abundant-appointment-96790
09/03/2020, 10:06 PMCreation of service was not idempotent. "personal-andy-AugmentationService"
.
Digging around it seems to be related to this one: https://github.com/terraform-providers/terraform-provider-aws/issues/2283
I can’t find the reference in pulumi doc for ECS, but it’s mentioned here: https://www.pulumi.com/docs/reference/pkg/aws/acm/certificate/. How do you specify the lifecycle block? A quick search in pulumi docs didn’t yield anything… 😞
I eventually managed to work around by rename the service, but I’m still curious about the lifecycle
reference here since we have ACM certs…little-cartoon-10569
09/03/2020, 10:29 PMcreate_before_destroy = true in a lifecycle block
is copied directly from the Terraform provider docs. The Pulumi equivalent is to set deleteBeforeReplace: true
in your opts.abundant-appointment-96790
09/03/2020, 10:30 PMlittle-cartoon-10569
09/03/2020, 10:57 PMdeleteBeforeReplace: false
?