forked from Flaconi/terraform-aws-transit-gateway-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
51 lines (42 loc) · 1.43 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
51
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 "default_route_table_association" {
description = "Boolean flag for toggling the default route table association"
default = "disable"
}
variable "default_route_table_propagation" {
description = "Boolean flag for toggling the propagation of routes in the default route table"
default = "disable"
}
variable "aws_account_id_satellite" {
description = "List of AWS account numbers representing the satellites of the TGW"
type = list
}
variable "aws_account_id_hub" {
description = "AWS account number containing the TGW hub"
type = string
}
variable "aws_login_profile" {
description = "Name of the AWS login profile as seen under ~/.aws/config used for assuming cross-account roles"
}
variable "role_to_assume_hub" {
description = "IAM role name to assume in the AWS account containing the TGW hub (eg. ASSUME-ROLE-HUB)"
type = string
}
variable "allow_external_principals" {
description = "Indicates whether principals outside your organization can be associated with a resource share"
type = bool
default = false
}