-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvariables.tf
29 lines (25 loc) · 914 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
variable "stack_deps_processing_enabled" {
type = bool
description = "Boolean flag to enable/disable processing all stack dependencies in the provided stack"
default = false
}
variable "component_deps_processing_enabled" {
type = bool
description = "Boolean flag to enable/disable processing stack config dependencies for the components in the provided stack"
default = true
}
variable "imports_processing_enabled" {
type = bool
description = "Enable/disable processing stack imports"
default = false
}
variable "stack_config_path_template" {
type = string
description = "Stack config path template"
default = "stacks/%s.yaml"
}
variable "env" {
type = map(string)
description = "Map of ENV vars in the format `key=value`. These ENV vars will be set in the `utils` provider before executing the data source"
default = null
}