File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ module "pg" {
209209| replicas | A list of ` google_sql_database_instance ` resources representing the replicas |
210210| replicas\_ instance\_ connection\_ names | The connection names of the replica instances to be used in connection strings |
211211| replicas\_ instance\_ first\_ ip\_ addresses | The first IPv4 addresses of the addresses assigned for the replica instances |
212+ | replicas\_ instance\_ psc\_ attachments | The psc\_ service\_ attachment\_ links created for the replica instances |
212213| replicas\_ instance\_ self\_ links | The URIs of the replica instances |
213214| replicas\_ instance\_ server\_ ca\_ certs | The CA certificates information used to connect to the replica instances via SSL |
214215| replicas\_ instance\_ service\_ account\_ email\_ addresses | The service account email addresses assigned to the replica instances |
Original file line number Diff line number Diff line change @@ -88,6 +88,11 @@ output "replicas_instance_server_ca_certs" {
8888 sensitive = true
8989}
9090
91+ output "replicas_instance_psc_attachments" {
92+ value = [for r in google_sql_database_instance . replicas : r . psc_service_attachment_link ]
93+ description = " The psc_service_attachment_links created for the replica instances"
94+ }
95+
9196output "replicas_instance_service_account_email_addresses" {
9297 value = [for r in google_sql_database_instance . replicas : r . service_account_email_address ]
9398 description = " The service account email addresses assigned to the replica instances"
You can’t perform that action at this time.
0 commit comments