probably a dumb question but how do you guys manag...
# python
g
probably a dumb question but how do you guys manage such scenario for a cloud Provider: 1. Resource created using Pulumi 2. Someone is deleting the resources not using pulumi (mistake from user on the cloud provider) 3. Pulumi to run the script, recreate deleted resources since there is a diff in between what was executed and wha't configure on the Cloud provider Hope it make sens
c
Run
pulumi refresh
or
pulumi up --refresh
f
If you are using it to standup infrastructure in Azure cloud the this will fail. You have to remove the resource from the state and rerun the pulumi up with refresh flag
g
all make sens run few test and was able to understand, Many thanks for the help!