Skip to content

Commit 03c128c

Browse files
authored
tf: fix ec_deployment terraform module (elastic#15353)
1 parent dcf8f29 commit 03c128c

File tree

1 file changed

+1
-1
lines changed
  • testing/infra/terraform/modules/ec_deployment

1 file changed

+1
-1
lines changed

testing/infra/terraform/modules/ec_deployment/outputs.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ output "apm_url" {
99
}
1010

1111
output "apm_secret_token" {
12-
value = var.integrations_server ? chomp(data.local_sensitive_file.secret_token.content) : ec_deployment.deployment.apm_secret_token
12+
value = var.integrations_server ? chomp(data.local_sensitive_file.secret_token[0].content) : ec_deployment.deployment.apm_secret_token
1313
sensitive = true
1414
description = "The APM Secret token"
1515
}

0 commit comments

Comments
 (0)