@@ -57,32 +57,32 @@ output "instance_service_account_email_address" {
5757
5858// Replicas
5959output "replicas_instance_first_ip_addresses" {
60- value = concat ( [for r in google_sql_database_instance . replicas : r . ip_address ], [ " " ])
60+ value = [for r in google_sql_database_instance . replicas : r . ip_address ]
6161 description = " The first IPv4 addresses of the addresses assigned for the replica instances"
6262}
6363
6464output "replicas_instance_connection_names" {
65- value = concat ( [for r in google_sql_database_instance . replicas : r . connection_name ], [ " " ])
65+ value = [for r in google_sql_database_instance . replicas : r . connection_name ]
6666 description = " The connection names of the replica instances to be used in connection strings"
6767}
6868
6969output "replicas_instance_self_links" {
70- value = concat ( [for r in google_sql_database_instance . replicas : r . self_link ], [ " " ])
70+ value = [for r in google_sql_database_instance . replicas : r . self_link ]
7171 description = " The URIs of the replica instances"
7272}
7373
7474output "replicas_instance_server_ca_certs" {
75- value = concat ( [for r in google_sql_database_instance . replicas : r . server_ca_cert ], [ " " ])
75+ value = [for r in google_sql_database_instance . replicas : r . server_ca_cert ]
7676 description = " The CA certificates information used to connect to the replica instances via SSL"
7777}
7878
7979output "replicas_instance_service_account_email_addresses" {
80- value = concat ( [for r in google_sql_database_instance . replicas : r . service_account_email_address ], [ " " ])
80+ value = [for r in google_sql_database_instance . replicas : r . service_account_email_address ]
8181 description = " The service account email addresses assigned to the replica instances"
8282}
8383
8484output "read_replica_instance_names" {
85- value = concat ( [for r in google_sql_database_instance . replicas : r . name ], [ " " ])
85+ value = [for r in google_sql_database_instance . replicas : r . name ]
8686 description = " The instance names for the read replica instances"
8787}
8888
0 commit comments