We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a605e commit 316846cCopy full SHA for 316846c
1 file changed
infrastructure/stacks/api-layer/api_gateway.tf
@@ -99,6 +99,14 @@ resource "aws_api_gateway_domain_name" "check_eligibility" {
99
lifecycle {
100
create_before_destroy = true
101
}
102
+
103
+ depends_on = [
104
+ aws_s3_object.pem_file,
105
+ data.aws_acm_certificate.imported_cert,
106
+ data.aws_acm_certificate.validation_cert,
107
+ module.s3_truststore_bucket,
108
+ module.eligibility_signposting_api_gateway.aws_cloudwatch_log_group.api_gateway
109
+ ]
110
111
112
resource "aws_api_gateway_base_path_mapping" "eligibility-signposting-api" {
0 commit comments