forked from elastic/apm-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
37 lines (31 loc) · 962 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
output "elasticsearch_url" {
value = module.ec_deployment.elasticsearch_url
description = "The secure Elasticsearch URL"
}
output "elasticsearch_username" {
value = module.ec_deployment.elasticsearch_username
sensitive = true
description = "The Elasticsearch username"
}
output "elasticsearch_password" {
value = module.ec_deployment.elasticsearch_password
sensitive = true
description = "The Elasticsearch password"
}
output "kibana_url" {
value = module.ec_deployment.kibana_url
description = "The secure Kibana URL"
}
output "apm_secret_token" {
value = module.ec_deployment.apm_secret_token
description = "The APM Server secret token"
sensitive = true
}
output "apm_server_url" {
value = module.ec_deployment.apm_url
description = "The APM Server URL"
}
output "admin_console_url" {
value = module.ec_deployment.admin_console_url
description = "The admin console URL"
}