-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
113 lines (107 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
variable "project_id" {
type = string
description = "(Required) The project ID to host the resource in"
}
variable "region" {
type = string
description = "(Required) The region to host the resource in"
}
variable "tag_templates" {
type = list(object({
id = string
display_name = optional(string)
force_delete = optional(bool)
fields = list(object({
id = string
type = string
values = optional(list(string))
description = optional(string)
display_name = optional(string)
is_required = optional(bool)
order = optional(number)
}))
}))
description = "(Optional) A list of tag template resource objects"
default = []
}
variable "entry_groups" {
type = list(object({
id = string
display_name = optional(string)
description = optional(string)
}))
description = "(Optional) A list of entry group objects"
default = []
}
variable "entries" {
type = list(object({
id = string
entry_group_id = string
type = string
file_patterns = optional(list(string))
user_specified_system = optional(string)
linked_resource = optional(string)
schema = optional(string)
display_name = optional(string)
description = optional(string)
}))
description = "(Optional) A list of entry objects"
default = []
}
variable "tags" {
type = list(object({
id = string
tag_template_id = string
parent = string
column = optional(string)
fields = list(object({
name = string
type = string
value = string
spec = optional(string)
display_name = optional(string)
order = optional(number)
}))
}))
description = "(Optional) A list of tag resource objects"
default = []
}
variable "taxonomy_policy_tags" {
type = list(object({
id = string
display_name = string
description = optional(string)
activated_policy_types = optional(list(string))
policy_tags = optional(list(object({
id = string
display_name = string
description = optional(string)
level_one = optional(list(object({
id = string
display_name = string
parent_tag = string
description = optional(string)
}))),
level_two = optional(list(object({
id = string
display_name = string
parent_tag = string
description = optional(string)
}))),
level_three = optional(list(object({
id = string
display_name = string
parent_tag = string
description = optional(string)
}))),
level_four = optional(list(object({
id = string
display_name = string
parent_tag = string
description = optional(string)
})))
})))
}))
description = "(Optional) A list of taxonomy and policy tags"
default = []
}