forked from moneyforwardvietnam/terraform-datadog-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
48 lines (40 loc) · 1.53 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# https://docs.datadoghq.com/account_management/org_settings/#overview
variable "organization_name" {
type = string
description = "Datadog organization name"
}
variable "saml_enabled" {
type = bool
default = false
description = "Whether or not SAML is enabled for the child organization. Note that Free and Trial organizations cannot enable SAML"
}
variable "saml_autocreate_users_domains" {
type = list(string)
default = []
description = "List of domains where the SAML automated user creation is enabled"
}
variable "saml_autocreate_users_enabled" {
type = bool
default = false
description = "Whether or not the automated user creation based on SAML domain is enabled"
}
variable "saml_idp_initiated_login_enabled" {
type = bool
default = true
description = "Whether or not IdP initiated login is enabled for the Datadog organization"
}
variable "saml_strict_mode_enabled" {
type = bool
default = false
description = "Whether or not the SAML strict mode is enabled. If true, all users must log in with SAML"
}
variable "private_widget_share" {
type = bool
default = false
description = "Whether or not the organization users can share widgets outside of Datadog"
}
variable "saml_autocreate_access_role" {
type = string
default = "ro"
description = "The access role of an autocreated user. Options are `st` (standard user), `adm` (admin user), or `ro` (read-only user). Allowed enum values: `st`, `adm` , `ro`, `ERROR`"
}