diff --git a/mmv1/templates/terraform/examples/dialogflowcx_agent_full.tf.tmpl b/mmv1/templates/terraform/examples/dialogflowcx_agent_full.tf.tmpl index e95e00fcf388..4e76cd8876e5 100644 --- a/mmv1/templates/terraform/examples/dialogflowcx_agent_full.tf.tmpl +++ b/mmv1/templates/terraform/examples/dialogflowcx_agent_full.tf.tmpl @@ -22,23 +22,23 @@ resource "google_dialogflow_cx_agent" "{{$.PrimaryResourceId}}" { uri = "${google_storage_bucket.bucket.url}/prefix-" } speech_settings { - endpointer_sensitivity = 30 - no_speech_timeout = "3.500s" + endpointer_sensitivity = 30 + no_speech_timeout = "3.500s" use_timeout_based_endpointing = true - models = { - name: "wrench" - mass: "1.3kg" - count: "3" + models = { + name : "wrench" + mass : "1.3kg" + count : "3" } } dtmf_settings { - enabled = true - max_digits = 1 + enabled = true + max_digits = 1 finish_digit = "#" } logging_settings { - enable_stackdriver_logging = true - enable_interaction_logging = true + enable_stackdriver_logging = true + enable_interaction_logging = true enable_consent_based_redaction = true } } diff --git a/mmv1/templates/terraform/examples/dialogflowcx_flow_full.tf.tmpl b/mmv1/templates/terraform/examples/dialogflowcx_flow_full.tf.tmpl index 30f470321f55..774be2521980 100644 --- a/mmv1/templates/terraform/examples/dialogflowcx_flow_full.tf.tmpl +++ b/mmv1/templates/terraform/examples/dialogflowcx_flow_full.tf.tmpl @@ -274,24 +274,24 @@ resource "google_dialogflow_cx_flow" "{{$.PrimaryResourceId}}" { uri = "${google_storage_bucket.bucket.url}/prefix-" } speech_settings { - endpointer_sensitivity = 30 - no_speech_timeout = "3.500s" + endpointer_sensitivity = 30 + no_speech_timeout = "3.500s" use_timeout_based_endpointing = true - models = { - name: "wrench" - mass: "1.3kg" - count: "3" + models = { + name : "wrench" + mass : "1.3kg" + count : "3" } } dtmf_settings { - enabled = true - max_digits = 1 + enabled = true + max_digits = 1 finish_digit = "#" } logging_settings { - enable_stackdriver_logging = true - enable_interaction_logging = true + enable_stackdriver_logging = true + enable_interaction_logging = true enable_consent_based_redaction = true } } -} \ No newline at end of file +} diff --git a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_agent_test.go.tmpl b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_agent_test.go.tmpl index 809eae20544b..2cac106a76a4 100644 --- a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_agent_test.go.tmpl +++ b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_agent_test.go.tmpl @@ -93,23 +93,23 @@ func testAccDialogflowCXAgent_full(context map[string]interface{}) string { uri = "${google_storage_bucket.bucket.url}/prefix-" } speech_settings { - endpointer_sensitivity = 30 - no_speech_timeout = "3.500s" + endpointer_sensitivity = 30 + no_speech_timeout = "3.500s" use_timeout_based_endpointing = true - models = { - name: "wrench" - mass: "1.3kg" - count: "3" + models = { + name : "wrench" + mass : "1.3kg" + count : "3" } } dtmf_settings { - enabled = true - max_digits = 1 + enabled = true + max_digits = 1 finish_digit = "#" } logging_settings { - enable_stackdriver_logging = true - enable_interaction_logging = true + enable_stackdriver_logging = true + enable_interaction_logging = true enable_consent_based_redaction = true } } diff --git a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_flow_test.go b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_flow_test.go index 8286bded45ee..24f1a967cc7b 100644 --- a/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_flow_test.go +++ b/mmv1/third_party/terraform/services/dialogflowcx/resource_dialogflowcx_flow_test.go @@ -342,23 +342,23 @@ func testAccDialogflowCXFlow_full(context map[string]interface{}) string { uri = "${google_storage_bucket.bucket.url}/prefix-" } speech_settings { - endpointer_sensitivity = 30 - no_speech_timeout = "3.500s" + endpointer_sensitivity = 30 + no_speech_timeout = "3.500s" use_timeout_based_endpointing = true - models = { - name: "wrench" - mass: "1.3kg" - count: "3" + models = { + name : "wrench" + mass : "1.3kg" + count : "3" } } dtmf_settings { - enabled = true - max_digits = 1 + enabled = true + max_digits = 1 finish_digit = "#" } logging_settings { - enable_stackdriver_logging = true - enable_interaction_logging = true + enable_stackdriver_logging = true + enable_interaction_logging = true enable_consent_based_redaction = true } }