org_group_policy_configs
Creates, updates, deletes, gets or lists an org_group_policy_configs resource.
Overview
| Name | org_group_policy_configs |
| Type | Resource |
| Id | datadog.organization.org_group_policy_configs |
Fields
The following fields are returned by SELECT queries:
- list_org_group_policy_configs
| Name | Datatype | Description |
|---|---|---|
id | string | The identifier of the policy config (uses the config name). (example: monitor_timezone) |
attributes | object | Attributes of an org group policy config. |
type | string | Org group policy configs resource type. (org_group_policy_configs) (example: org_group_policy_configs) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_org_group_policy_configs | select | List all org configs that are eligible to be used as organization group policies. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
site | string | The Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both. |
SELECT examples
- list_org_group_policy_configs
List all org configs that are eligible to be used as organization group policies.
SELECT
id,
attributes,
type
FROM datadog.organization.org_group_policy_configs
;