Skip to content

Commit

Permalink
Update outputs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
jawadqur authored Nov 5, 2024
1 parent 9ad91d3 commit 2ae3e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tf_files/aws/commons/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ output "cluster_oidc_provider_arn" {
}

output "opensearch_cluster_arn" {
value = module.commons_vpc_es[0].es_arn
value = var.deploy_es ? module.commons_vpc_es[0].es_arn : null
}

##
Expand Down Expand Up @@ -112,7 +112,7 @@ output "aurora_cluster_master_password" {
}

output "es_endpoint" {
value = module.commons_vpc_es[0].es_endpoint
value = var.deploy_es ? module.commons_vpc_es[0].es_endpoint : null
}

##
Expand Down

0 comments on commit 2ae3e10

Please sign in to comment.