-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (35 loc) · 1020 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
variable "aws_region" {
description = "The AWS region to deploy in"
default = "us-east-1"
}
variable "vpc_cidr" {
description = "VPC CIDR block"
default = "10.0.0.0/16"
}
variable "public_subnets" {
description = "Public subnet CIDR blocks"
type = list(string)
default = ["10.0.1.0/24", "10.0.2.0/24"]
}
variable "private_subnets" {
description = "Private subnet CIDR blocks"
type = list(string)
default = ["10.0.3.0/24", "10.0.4.0/24", "10.0.5.0/24", "10.0..0/24"]
}
variable "availability_zones" {
description = "List of Availability Zones to use for resources"
type = list(string)
default = ["us-east-1a", "us-east-1b", "us-east-1c"]
}
variable "db_name" {
description = "Name of the database"
type = string
}
variable "db_username" {
description = "Database master username"
type = string
}
variable "db_password" {
description = "Database master password"
type = string
}