-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
48 lines (39 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
output "database_name" {
value = module.database.database_name
description = "The name of the database."
}
output "sql_user_username" {
value = module.database.sql_user_username
description = "The name of the database user."
}
output "sql_user_password" {
value = module.database.sql_user_password
description = "The password of the database user."
}
output "database_instance_private_ip_address" {
value = module.database.database_instance_private_ip_address
description = "The private IP address of the database instance."
}
output "redis_auth_string" {
value = module.redis.redis_auth_string
description = "The authentication string of the Redis instance."
}
output "redis_host" {
value = module.redis.redis_host
description = "The host of the Redis instance."
}
output "redis_port" {
value = module.redis.redis_port
description = "The port of the Redis instance."
}
output "cluster_ca_certificate" {
value = module.gke.cluster_ca_certificate
sensitive = true
}
output "cluster_endpoint" {
value = module.gke.cluster_endpoint
sensitive = true
}
output "ip" {
value = google_compute_global_address.this.address
}