We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d808c0a commit 7672e11Copy full SHA for 7672e11
infrastructure/terraform/components/app/amplify_domain_association.tf
@@ -30,7 +30,8 @@ resource "null_resource" "amplify_domain_association" {
30
}
31
32
provisioner "local-exec" {
33
- when = destroy
34
- command = "aws amplify delete-domain-association --app-id ${self.triggers.amplify_app_id} --domain-name ${self.triggers.amplify_domain_name}"
+ when = destroy
+ command = "aws amplify delete-domain-association --app-id ${self.triggers.amplify_app_id} --domain-name ${self.triggers.amplify_domain_name}"
35
+ on_failure = continue
36
37
0 commit comments