-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
43 lines (34 loc) · 808 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" {
default = "us-east-1"
}
variable "environment" {
description = "Deployment Environment"
}
variable "vpc_cidr" {
description = "CIDR block of the vpc"
default = "10.0.0.0/16"
}
variable "public_subnets_cidr" {
type = list(any)
description = "CIDR block for Public Subnet"
default = ["10.0.1.0/24"]
}
variable "private_subnets_cidr" {
type = list(any)
description = "CIDR block for Private Subnet"
default = ["10.0.10.0/24"]
}
variable "bastion_key_pair" {
type = string
description = "SSH Key Pair for Bastion hosts"
}
variable "elb_port" {
type = string
description = "ALB port for App"
default = "80"
}
variable "server_port" {
type = string
description = "Server port for App"
default = "80"
}