forked from olufuwatayo/wordpress-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
41 lines (30 loc) · 752 Bytes
/
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
variable "region" {
description = "default region"
}
variable "environment" {
description = "The Deployment environment"
}
variable "vpc_cidr" {
description = "The CIDR block of the vpc"
}
variable "public_subnet1_cidr" {
description = "The CIDR block for the public subnet"
}
variable "public_subnet2_cidr" {
description = "The CIDR block for the public subnet"
}
variable "private_subnet1_cidr" {
description = "The CIDR block for the private subnet"
}
variable "private_subnet2_cidr" {
description = "The CIDR block for the private subnet"
}
variable "db_name"{
description = "The database name"
}
variable "db_pass"{
description = "The database password"
}
variable "db_user"{
description = "The database user"
}