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 396a365 commit 299a927Copy full SHA for 299a927
src/main.tf
@@ -24,6 +24,7 @@ data "aws_partition" "current" {
24
}
25
26
module "external_dns" {
27
+ count = local.enabled ? 1 : 0
28
source = "cloudposse/helm-release/aws"
29
version = "0.10.1"
30
src/outputs.tf
@@ -1,4 +1,4 @@
1
output "metadata" {
2
- value = module.external_dns.metadata
+ value = local.enabled ? module.external_dns[0].metadata : null
3
description = "Block status of the deployed release"
4
0 commit comments