From 387b72840352ddbd2d9e0c89d2234fadcb61dc67 Mon Sep 17 00:00:00 2001 From: himanikh Date: Thu, 12 Dec 2024 01:22:43 +0000 Subject: [PATCH] change case --- ...edis_cluster_user_created_connections.tf.tmpl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mmv1/templates/terraform/examples/redis_cluster_user_created_connections.tf.tmpl b/mmv1/templates/terraform/examples/redis_cluster_user_created_connections.tf.tmpl index 41750ab0a982..67eab23ac688 100644 --- a/mmv1/templates/terraform/examples/redis_cluster_user_created_connections.tf.tmpl +++ b/mmv1/templates/terraform/examples/redis_cluster_user_created_connections.tf.tmpl @@ -2,21 +2,21 @@ resource "google_redis_cluster_user_created_connections" "{{$.PrimaryResourceId} cluster = "{{index $.Vars "cluster_name"}}" cluster_endpoints { connections { - pscConnection { - pscConnectionId = google_compute_forwarding_rule.forwarding_rule1_network1.pscConnectionId + psc_connection { + psc_connection_id = google_compute_forwarding_rule.forwarding_rule1_network1.pscConnectionId address = ip11.address - forwardingRule = google_compute_forwarding_rule.forwarding_rule1_network1.id + forwarding_rule = google_compute_forwarding_rule.forwarding_rule1_network1.id network = google_compute_forwarding_rule.forwarding_rule1_network1.network - serviceAttachment = google_compute_forwarding_rule.forwarding_rule1_network1.target + service_attachment = google_compute_forwarding_rule.forwarding_rule1_network1.target } } connections { - pscConnection { - pscConnectionId = google_compute_forwarding_rule.forwarding_rule2_network1.pscConnectionId + psc_connection { + psc_connection_id = google_compute_forwarding_rule.forwarding_rule2_network1.pscConnectionId address = ip12.address - forwardingRule = google_compute_forwarding_rule.forwarding_rule2_network1.id + forwarding_rule = google_compute_forwarding_rule.forwarding_rule2_network1.id network = google_compute_forwarding_rule.forwarding_rule2_network1.network - serviceAttachment = google_compute_forwarding_rule.forwarding_rule2_network1.target + service_attachment = google_compute_forwarding_rule.forwarding_rule2_network1.target } } }