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 b97a361 commit 5713f50Copy full SHA for 5713f50
terraform/outputs.tf
@@ -29,5 +29,5 @@ output "api_apigateway_url" {
29
30
output "api_apigateway_url_custom" {
31
# see https://discuss.hashicorp.com/t/terraform-outputs-with-count-index/32555
32
- value = "https://${one(aws_route53_record.api[*].fqdn)}"
+ value = var.create_custom_domain ? "https://${one(aws_route53_record.api[*].fqdn)}" : "not implemented"
33
}
0 commit comments