-
Notifications
You must be signed in to change notification settings - Fork 882
/
outputs.tf
134 lines (116 loc) · 3.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
_all_instances = merge(
{ primary = google_sql_database_instance.primary },
google_sql_database_instance.replicas
)
}
output "client_certificates" {
description = "The CA Certificate used to connect to the SQL Instance via SSL."
value = google_sql_ssl_cert.client_certificates
sensitive = true
}
output "connection_name" {
description = "Connection name of the primary instance."
value = google_sql_database_instance.primary.connection_name
}
output "connection_names" {
description = "Connection names of all instances."
value = {
for id, instance in local._all_instances :
id => instance.connection_name
}
}
output "dns_name" {
description = "The dns name of the instance."
value = google_sql_database_instance.primary.dns_name
}
output "dns_names" {
description = "Dns names of all instances."
value = {
for id, instance in local._all_instances :
id => instance.dns_name
}
}
output "id" {
description = "Fully qualified primary instance id."
value = google_sql_database_instance.primary.private_ip_address
}
output "ids" {
description = "Fully qualified ids of all instances."
value = {
for id, instance in local._all_instances :
id => instance.id
}
}
output "instances" {
description = "Cloud SQL instance resources."
value = local._all_instances
sensitive = true
}
output "ip" {
description = "IP address of the primary instance."
value = google_sql_database_instance.primary.private_ip_address
}
output "ips" {
description = "IP addresses of all instances."
value = {
for id, instance in local._all_instances :
id => instance.private_ip_address
}
}
output "name" {
description = "Name of the primary instance."
value = google_sql_database_instance.primary.name
}
output "names" {
description = "Names of all instances."
value = {
for id, instance in local._all_instances :
id => instance.name
}
}
output "psc_service_attachment_link" {
description = "The link to service attachment of PSC instance."
value = google_sql_database_instance.primary.psc_service_attachment_link
}
output "psc_service_attachment_links" {
description = "Links to service attachment of PSC instances."
value = {
for id, instance in local._all_instances :
id => instance.psc_service_attachment_link
}
}
output "self_link" {
description = "Self link of the primary instance."
value = google_sql_database_instance.primary.self_link
}
output "self_links" {
description = "Self links of all instances."
value = {
for id, instance in local._all_instances :
id => instance.self_link
}
}
output "user_passwords" {
description = "Map of containing the password of all users created through terraform."
value = {
for name, user in google_sql_user.users :
name => user.password
}
sensitive = true
}