-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathvariables.tf
More file actions
21 lines (18 loc) · 629 Bytes
/
variables.tf
File metadata and controls
21 lines (18 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
variable "stack_config_local_path" {
type = string
description = "Path to local stack configs"
}
variable "stacks" {
type = list(string)
description = "A list of infrastructure stack names"
}
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 = false
}