forked from cloudposse/terraform-yaml-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
53 lines (45 loc) · 1.44 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
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 = []
}