-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (54 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
variable "region_aws" {
description = "AWS Region"
type = string
}
variable "firewall_defaults" {
description = "default subnet and interface values for firewall"
type = object({
subnets = list(string)
rt_tables = list(string)
instance_type = string
})
}
variable "transit_gateway_defaults" {
description = "values for the transit gateway default option values"
type = object({
amazon_side_asn = number
auto_accept_shared_attachments = string
default_route_table_association = string
default_route_table_propagation = string
multicast_support = string
dns_support = string
vpn_ecmp_support = string
})
}
variable "network_prefix" {
description = "prefix to prepend on all resource names within the network"
type = string
}
variable "supernet_cidr" {
description = "cidr block for entire datacenter, must be /16"
type = string
}
variable "spoke_vpc_params" {
description = "parameters for spoke VPCs"
type = map(object({
cidr_block = string
subnets = list(string)
}))
}
variable "firewall_params" {
description = "options for fortigate firewall instance"
type = object({
firewall_name = string
outside_extra_public_ips = number
inside_extra_private_ips = number
})
}
variable "cloud_watch_params" {
description = "values for cloudwatch logging"
type = object({
cloud_watch_on = bool
retention_in_days = number
})
}