This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
vars.tf
77 lines (64 loc) · 1.75 KB
/
vars.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
variable "service_name" {
type = string
description = "Name of the service"
}
variable "env" {
type = string
description = "Deployment Environment"
}
variable "cidr_block" {
type = string
description = "CIDR for dev VPC"
}
variable "availability_zones" {
description = "A list of availability zones in the region"
type = list(string)
}
variable "public_ipv4_subnets" {
type = list(string)
description = "A list all the public IPv4 subnets in the VPC"
}
variable "private_ipv4_subnets" {
type = list(string)
default = []
description = "A list all the private IPv4 subnets in the VPC"
}
variable "database_ipv4_subnets" {
type = list(string)
description = "A list all the database IPv4 subnets in the VPC"
}
variable "tags" {
type = map(string)
default = {}
description = "Tags for VPC"
}
variable "instance_tenancy" {
type = string
description = "A tenancy option for instances in the VPC"
default = "default"
}
variable "enable_dns_support" {
type = bool
description = "Enable/Disable DNS support in the VPC"
default = true
}
variable "enable_dns_hostnames" {
type = bool
description = "Enable/Disable DNS hostnames in the VPC"
default = true
}
variable "enable_nat_gateway" {
type = bool
default = true
description = "Enable/Disable nat gateway in public subnets to enable internet access in private subnet"
}
variable "enable_ipv6_egw" {
type = bool
default = true
description = "Enable/Disable Egress-only Gateway to enable internet access in private IPv6 subnet"
}
variable "enable_vpc_ipv6" {
type = bool
default = false
description = "Enables IPv6 Support in the VPC"
}