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
cuddly-nightfall-71097
08/28/2024, 7:17 AM
Run
pulumi refresh
or
pulumi up --refresh
f
faint-pager-13674
08/28/2024, 10:06 PM
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
gorgeous-leather-93186
08/29/2024, 11:01 PM
all make sens run few test and was able to understand, Many thanks for the help!