-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
50 lines (42 loc) · 1.37 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 "name" {
description = "Name to be used on all the resources as identifier"
type = string
}
variable "description" {
description = "Description of the Transit Gateway"
type = string
default = null
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "auto_accept_shared_attachments" {
description = "Whether resource attachment requests are automatically accepted"
type = string
default = "enable"
}
variable "default_route_table_association" {
description = "Whether resource attachments are automatically associated with the default association route table"
type = string
default = "disable"
}
variable "default_route_table_propagation" {
description = "Whether resource attachments automatically propagate routes to the default propagation route table"
type = string
default = "disable"
}
variable "aws_account_id_satellite" {
description = "List of AWS account numbers representing the satellites of the TGW"
type = list(string)
}
variable "aws_account_id_hub" {
description = "AWS account number containing the TGW hub"
type = string
}
variable "allow_external_principals" {
description = "Allow external principals to be used for TGW resource share"
type = bool
default = false
}