governance_configs
Creates, updates, deletes, gets or lists a governance_configs resource.
Overview
| Name | governance_configs |
| Type | Resource |
| Id | datadog.organization.governance_configs |
Fields
The following fields are returned by SELECT queries:
- get_governance_config
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the organization the Governance Console configuration applies to. May be the nil UUID (00000000-0000-0000-0000-000000000000) when the configuration is not tied to a specific organization record. (example: 00000000-0000-0000-0000-000000000000) |
attributes | object | The attributes of a Governance Console configuration. |
type | string | Governance console config resource type. (governance_console_config) (example: governance_console_config) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_governance_config | select | Retrieve the Governance Console configuration for the organization, including whether the<br />Console is enabled, whether assignment notifications are enabled, and whether usage<br />attribution is configured. |
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
- get_governance_config
Retrieve the Governance Console configuration for the organization, including whether the<br />Console is enabled, whether assignment notifications are enabled, and whether usage<br />attribution is configured.
SELECT
id,
attributes,
type
FROM datadog.organization.governance_configs
;