🦞
Resources

openclaw_channel_googlechat

Manages the OpenClaw Google Chat channel.

Manages the Google Chat channel configuration including webhook path, bot user, and group policy.

Example Usage

resource "openclaw_channel_googlechat" "main" {
  enabled      = true
  webhook_path = "/hooks/gchat"
  dm_policy    = "allowlist"
  dm_allow_from = ["user@company.com"]
  group_policy = "open"
}

Argument Reference

ArgumentTypeRequiredDefaultDescription
enabledBoolNo--Enable or disable the Google Chat channel.
webhook_pathStringNo--Webhook path for incoming messages.
bot_userStringNo--Bot user identifier.
dm_policyStringNo"pairing"DM policy: pairing, allowlist, open, disabled.
dm_allow_fromList(String)No--User identifiers allowed to send DMs.
group_policyStringNo"allowlist"Group policy: allowlist, open, disabled.
media_max_mbInt64No20Max inbound media size in MB.

Attribute Reference

AttributeTypeDescription
idStringAlways "channel_googlechat".

Import

terraform import openclaw_channel_googlechat.main channel_googlechat

On this page