-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
50 lines (43 loc) · 1.39 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
variable "landing_zone_providers" {
type = map(map(string))
description = "The list of AWS providers."
default = {}
}
variable "landing_zone_components" {
type = map(string)
description = "This is the list of AWS Landing Zone components that will be deployed if corresponding `.tfvars` file is included."
}
variable "terraform_backend_type" {
type = string
description = "The list of AWS providers."
default = "local"
}
variable "terraform_backend_config" {
type = map(string)
description = "This is the backend configure for all components."
default = {
path = "/tmp/.terrahub/landing_zone"
}
}
variable "terraform_backend_output" {
type = map(string)
description = "This is the backend configure for output component."
default = {
path = "/tmp/.terrahub/landing_zone/landing_zone_reader_output/terraform.tfstate"
}
}
variable "terraform_config" {
type = bool
description = "If true, will generate root `.terrahub.yml` config."
default = true
}
variable "terraform_reader_config" {
type = bool
description = "If true, will generate `landing_zone_reader_config`."
default = true
}
variable "terraform_output_path" {
type = string
description = "The terraform aoutput path that will be used by `terrahub` in this component."
default = "/tmp/.terrahub/landing_zone/output.json"
}