Skip to content

Commit

Permalink
Missing newline, formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
averbuks committed Oct 8, 2024
1 parent a788a73 commit 230acf8
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 41 deletions.
20 changes: 10 additions & 10 deletions mmv1/templates/terraform/examples/dialogflowcx_agent_full.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
22 changes: 11 additions & 11 deletions mmv1/templates/terraform/examples/dialogflowcx_flow_full.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 230acf8

Please sign in to comment.