-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.tfvars
35 lines (29 loc) · 946 Bytes
/
parameters.tfvars
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
# General
EnvironmentName = "hawa"
aws_region = "us-west-2"
# IAM
EC2InstanceRole = "HawaInstance"
S3BucketName = "tirgan-hawa"
# VPC
EnableDnsHostnames = true
VpcCIDR = "10.0.0.0/16"
PublicSubnet1CIDR = "10.0.0.0/24"
PublicSubnet2CIDR = "10.0.1.0/24"
PrivateSubnet1CIDR = "10.0.2.0/24"
PrivateSubnet2CIDR = "10.0.3.0/24"
# ASG
ASGMinSize = 1
ASGMaxSize = 4
ASGDesiredSize = 1
image_id = "ami-07b4f3c02c7f83d59"
instance_type = "t2.micro"
instance_key_name = "hawa"
# LB
HealthCheckIntervalSeconds = 10
HealthCheckPath = "/"
HealthCheckProtocol = "HTTP"
HealthCheckTimeoutSeconds = 8
HealthyThresholdCount = 2
UnhealthyThresholdCount = 2
TargetGroupPort = 80
TargetGroupProtocol = "HTTP"