-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
variables.tf
65 lines (55 loc) · 1.78 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
variable "map_config_local_base_path" {
type = string
description = "Base path to local YAML configuration files of map type"
default = ""
}
variable "map_config_remote_base_path" {
type = string
description = "Base path to remote YAML configuration files of map type"
default = ""
}
variable "map_config_paths" {
type = list(string)
description = "Paths to YAML configuration files of map type"
default = []
}
variable "list_config_local_base_path" {
type = string
description = "Base path to local YAML configuration files of list type"
default = ""
}
variable "list_config_remote_base_path" {
type = string
description = "Base path to remote YAML configuration files of list type"
default = ""
}
variable "list_config_paths" {
type = list(string)
description = "Paths to YAML configuration files of list type"
default = []
}
variable "parameters" {
type = map(string)
description = "Map of parameters for interpolation within the YAML config templates"
default = {}
}
variable "remote_config_selector" {
type = string
description = "String to detect local vs. remote config paths"
default = "://"
}
variable "map_configs" {
type = any
description = "List of existing configurations of map type. Deep-merging of the existing map configs takes precedence over the map configs loaded from YAML files"
default = []
}
variable "append_list_enabled" {
type = bool
description = "A boolean flag to enable/disable appending lists instead of overwriting them."
default = false
}
variable "deep_copy_list_enabled" {
type = bool
description = "A boolean flag to enable/disable merging of list elements one by one."
default = false
}