googleworkspace_chrome_policy (Resource)

Chrome Policy resource in the Terraform Googleworkspace provider. Currently only supports policies not requiring additionalTargetKeys. Chrome Policy Schema resides under the https://www.googleapis.com/auth/chrome.management.policy client scope.

Example Usage

resource "googleworkspace_org_unit" "example" {
  name                 = "example"
  parent_org_unit_path = "/"
}

resource "googleworkspace_chrome_policy" "example" {
  org_unit_id = googleworkspace_org_unit.test.id
  policies {
    schema_name = "chrome.users.MaxConnectionsPerProxy"
    schema_values = {
      maxConnectionsPerProxy = jsonencode(34)
    }
  }
}

Schema

Required

Read-Only

Nested Schema for policies

Required: