generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
30 lines (27 loc) · 815 Bytes
/
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
variable "enterprise_hierarchy" {
type = map(map(object({
name = string
parent_key_name = optional(string, null)
owner_iam_id = optional(string, null)
add_owner_iam_policies = optional(bool, false)
key_name = string
})))
description = "tree based input for creating enterprise children"
}
variable "enterprise_crn" {
type = string
description = "Enterprise CRN"
}
variable "enterprise_primary_contact_iam_id" {
type = string
description = "Enterprise owner IAM id"
}
variable "parent_account_groups" {
type = map(object({
crn = string
name = string
parent = string
primary_contact_iam_id = string
}))
description = "account group object"
}