gray-airplane-38353
07/11/2024, 4:06 PM$ pulumi version
v3.122.0
I had previously executed this command:
$ pulumi up --parallel 35 --fully-qualify-stack-names --show-replacement-steps --continue-on-error --stack stage1
And I fully expected some errors (which I got), due to some existing resources, but the resources I expected to be created were.
However, I made no other changes and re-ran the command, and got this:
$ pulumi up --parallel 35 --fully-qualify-stack-names --show-replacement-steps --continue-on-error --stack stage1
error: could not deserialize deployment: snapshot integrity failure; refusing to use it: child resource urn:pulumi:stage1::infra::aws:lb:ApplicationLoadBalancer$aws:route53/record:Record$aws:acm/certificate:Certificate::<http://xxx.yyy.mydomain.com|xxx.yyy.mydomain.com> refers to missing parent urn:pulumi:stage1::infra::aws:lb:ApplicationLoadBalancer$aws:route53/record:Record::<http://xxx.yyy.mydomain.com|xxx.yyy.mydomain.com>
steep-pager-59220
07/12/2024, 6:13 AM--disable-integrity-checking
in the meantime.
Also another question, just to double check a theory I have. Is urn:pulumi:stage1::infra::aws:lb:ApplicationLoadBalancer$aws:route53/record:Record::xxx.yyy.mydomain.com
one of the resources that previously failed to be created?steep-pager-59220
07/12/2024, 6:17 AMgray-airplane-38353
07/13/2024, 12:24 AMAlso another question, just to double check a theory I have. Is@steep-pager-59220 - yes, I believe so (need to go back and double check logs). By using the flag, I was able to do aone of the resources that previously failed to be created? (edited)urn:pulumi:stage1::infra::aws:lb:ApplicationLoadBalancer$aws:route53/record:Record::<http://xxx.yyy.mydomain.com|xxx.yyy.mydomain.com>
pulumi refresh ...
and "recover" state.steep-pager-59220
07/15/2024, 9:02 AM