-
Notifications
You must be signed in to change notification settings - Fork 18
/
variables.tf
84 lines (81 loc) · 3.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
variable "feature_set" {
description = "The feature set of the organization. One of 'ALL' or 'CONSOLIDATED_BILLING'."
type = string
default = "ALL"
nullable = false
}
variable "aws_service_access_principals" {
description = "A list of AWS service principal names for which you want to enable integration with your organization."
type = list(string)
default = []
nullable = false
}
variable "enabled_policy_types" {
description = "The list of Organizations policy types to enable in the Organization Root. The organization must have `feature_set` set to `\"ALL\"`."
type = list(string)
default = []
nullable = false
}
variable "organization" {
description = "The organization with the tree of organizational units and accounts to construct. Defaults to an object with an empty list of units and accounts"
type = object({
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
units = optional(list(object({
name = string,
key = string,
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
units = optional(list(object({
name = string,
key = string,
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
units = optional(list(object({
name = string,
key = string,
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
units = optional(list(object({
name = string,
key = string,
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
units = optional(list(object({
name = string,
key = string,
accounts = optional(list(object({
name = string,
key = string,
email = string,
allow_iam_users_access_to_billing = optional(bool, true),
})), [])
})), [])
})), [])
})), [])
})), [])
})), [])
})
default = {}
nullable = false
}