-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
51 lines (42 loc) · 1.26 KB
/
variables.tf
File metadata and controls
51 lines (42 loc) · 1.26 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
variable "allow_external_principals" {
default = false
description = "Allow resources to be shared outside of your AWS org"
type = bool
}
variable "amazon_side_asn" {
description = "Amazon Side ASN"
type = number
}
variable "description" {
description = "Description used in Transit Gateway"
type = string
}
variable "name" {
default = "tgw"
description = "Name of transit gateway and related resources"
type = string
}
variable "resource_share_accounts" {
default = []
description = "Accounts to share gateway with (leave blank for none)"
type = list(string)
}
variable "subnet_ids" {
default = []
description = "Subnets to create transit gateway in (must use one subnet for every AZ you wish to use the tgw in)"
type = list(string)
}
variable "tags" {
default = {}
description = "Tags to add to any resources that support it"
type = map(string)
}
variable "security_group_referencing_support" {
default = "disable"
description = "Whether Security Group Referencing Support is enabled on the transit gateway. Valid values: enable, disable"
type = string
}
variable "vpc_id" {
description = "VPC to create transit gateway in"
type = string
}