-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
47 lines (40 loc) · 871 Bytes
/
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
variable "region" {
default = "ap-northeast-2"
}
variable "azs" {}
variable "vpc_shared" {
type = object({
name = string
group_id = string
cidr = string
public_subnets = set(string)
private_subnets = set(string)
tags = map(string)
})
}
variable "vpc_dev" {
type = object({
name = string
group_id = string
cidr = string
public_subnets = set(string)
private_subnets = set(string)
tags = map(string)
})
}
variable "vpn_in_shared" {
type = object({
enable = bool
name = string
static_routes = list(string)
remote_device_ip = string
tags = map(string)
})
}
variable "azs_nat_gateway_count" {
type = number
default = 3
}
variable "tags" {
type = map(string)
}