Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions mmv1/products/ces/Deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,16 @@ properties:
- name: webWidgetTitle
type: String
description: The title of the web widget.
- name: securitySettings
type: NestedObject
description: Security settings for the web widget.
properties:
- name: enablePublicAccess
type: Boolean
description: |-
Whether to enable public access for the web widget deployment.
When true, the widget can be embedded without additional
authentication.
- name: createTime
type: String
description: Timestamp when this deployment was created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ resource "google_ces_deployment" "{{$.PrimaryResourceId}}" {
modality = "CHAT_AND_VOICE"
theme = "DARK"
web_widget_title = "temp_webwidget_title"
security_settings {
enable_public_access = true
}
}
}
}
Loading