-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
variables.tf
38 lines (33 loc) · 1.38 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
#------------------------------------------------------------------------------
# Misc
#------------------------------------------------------------------------------
variable "name_prefix" {
description = "Name prefix for resources on AWS"
}
#------------------------------------------------------------------------------
# AWS CREDENTIALS AND REGION
#------------------------------------------------------------------------------
variable "region" {
description = "AWS Region the infrastructure is hosted in"
}
variable "availability_zones" {
type = list(any)
description = "List of availability zones to be used by subnets"
}
#------------------------------------------------------------------------------
# AWS Virtual Private Network
#------------------------------------------------------------------------------
variable "vpc_cidr_block" {
description = "AWS VPC CIDR Block"
}
#------------------------------------------------------------------------------
# AWS Subnets
#------------------------------------------------------------------------------
variable "public_subnets_cidrs_per_availability_zone" {
type = list(any)
description = "List of CIDRs to use on each availability zone for public subnets"
}
variable "private_subnets_cidrs_per_availability_zone" {
type = list(any)
description = "List of CIDRs to use on each availability zone for private subnets"
}