-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (35 loc) · 918 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
variable "environment" {
description = "Environment name"
type = string
default = "dev"
}
variable "vpc_cidr" {
description = "The IPv4 CIDR block for the VPC"
type = string
default = "10.0.0.0/16"
}
variable "enable_dns_hostnames" {
description = "Enables DNS hosntnames for the VPC"
type = bool
default = true
}
variable "enable_dns_support" {
description = "Enables DNS support for the VPC"
type = bool
default = true
}
variable "public_subnets_cidr" {
description = "Public Subnets CIDR"
type = list(any)
default = ["10.0.0.0/24"]
}
variable "availability_zones" {
description = "Availability zones"
type = list(any)
default = ["eu-west-2a", "us-west-2b"]
}
variable "private_subnets_cidr" {
description = "Private subnets CIDR"
type = list(any)
default = ["10.0.1.0/24", "10.0.2.0/24"]
}