icy-controller-6092
02/21/2024, 1:28 PMicy-controller-6092
02/21/2024, 1:28 PMimport * as pulumi from '@pulumi/pulumi'
const ev1 = process.env['EV1']
const randomprovider: pulumi.dynamic.ResourceProvider = {
create(inputs) {
const ev2 = process.env['EV2']
const id = `${ev1}-${ev2}-${Math.random()}`
return Promise.resolve({ id, outs: {} })
},
delete(id, props) {
const ev2 = process.env['EV2']
console.log('deleting random with id:', id)
console.log('ev1=', ev1, 'ev2=', ev2)
return Promise.resolve()
},
}
export class Random extends pulumi.dynamic.Resource {
constructor(name: string, opts?: pulumi.CustomResourceOptions) {
super(randomprovider, name, {}, opts)
}
}
icy-controller-6092
02/21/2024, 1:30 PMicy-controller-6092
02/21/2024, 1:31 PMconsole.log('ev1=', ev1, 'ev2=', ev2)
when the delete function is run, ev1 will show the old value from the previous run, and ev2 will show the value from the current runNo matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by