Skip to main content

org_group_policy_configs

Creates, updates, deletes, gets or lists an org_group_policy_configs resource.

Overview

Nameorg_group_policy_configs
TypeResource
Iddatadog.organization.org_group_policy_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier of the policy config (uses the config name). (example: monitor_timezone)
attributesobjectAttributes of an org group policy config.
typestringOrg group policy configs resource type. (org_group_policy_configs) (example: org_group_policy_configs)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_org_group_policy_configsselectList 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.

NameDatatypeDescription
sitestringThe 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 all org configs that are eligible to be used as organization group policies.

SELECT
id,
attributes,
type
FROM datadog.organization.org_group_policy_configs
;