Skip to content

Commit

Permalink
tf 6
Browse files Browse the repository at this point in the history
  • Loading branch information
orouz committed Jan 7, 2024
1 parent 1d0197a commit 32a88a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-gcp-dm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if: success()
working-directory: ${{ env.WORKING_DIR }}
run: |
terraform -vs
terraform -v
terraform init
terraform validate
terraform apply --auto-approve -var="deployment_name=gcp-ci-test"
Expand Down
8 changes: 4 additions & 4 deletions deploy/gcp/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ output "deployment_name" {
# Elastic Cloud output
# =============================================================
output "elasticsearch_url" {
value = var.serverless_mode ? module.ec_project[0].elasticsearch_url : module.ec_deployment[0].elasticsearch_url
value = module.ec_deployment[0].elasticsearch_url
description = "The secure Elasticsearch URL"
}

output "elasticsearch_username" {
value = var.serverless_mode ? module.ec_project[0].elasticsearch_username : module.ec_deployment[0].elasticsearch_username
value = module.ec_deployment[0].elasticsearch_username
description = "The Elasticsearch username"
sensitive = true
}

output "elasticsearch_password" {
value = var.serverless_mode ? module.ec_project[0].elasticsearch_password : module.ec_deployment[0].elasticsearch_password
value = module.ec_deployment[0].elasticsearch_password
description = "The Elasticsearch password"
sensitive = true
}

output "kibana_url" {
value = var.serverless_mode ? module.ec_project[0].kibana_url : module.ec_deployment[0].kibana_url
value = module.ec_deployment[0].kibana_url
description = "The secure Kibana URL"
}

Expand Down

0 comments on commit 32a88a2

Please sign in to comment.