-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
54 lines (45 loc) · 1.37 KB
/
variables.tf
File metadata and controls
54 lines (45 loc) · 1.37 KB
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
variable "capabilities" {
description = "The capabilities required to deploy the cloudformation template"
type = list(string)
default = ["CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_IAM"]
}
variable "description" {
description = "The description of the cloudformation stack"
type = string
}
variable "enable_management_account" {
description = "Enable the deployment to the management account"
type = bool
default = false
}
variable "organization_units" {
description = "A list of organization units to deploy the boundary (defaults to all organization units)"
type = list(string)
default = []
}
variable "max_concurrent_count" {
description = "The maximum number of concurrent deployments"
type = number
default = 10
}
variable "name" {
description = "The name of the cloudformation stack"
type = string
}
variable "parameters" {
description = "The parameters to pass to the cloudformation template"
type = map(string)
default = {}
}
variable "region" {
description = "The region to deploy the cloudformation template"
type = string
}
variable "tags" {
description = "The tags to apply to the cloudformation stack"
type = map(string)
}
variable "template" {
description = "The body of the cloudformation template to deploy"
type = string
}