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.
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)
}
}
}
org_unit_id
(String) The target org unit on which this policy is applied.policies
(Block List, Min: 1) Policies to set for the org unit (see below for nested schema)id
(String) The ID of this resource.policies
Required:
schema_name
(String) The full qualified name of the policy schema.schema_values
(Map of String) JSON encoded map that represents key/value pairs that correspond to the given schema.