Skip to content

Commit

Permalink
Create terraform.tfvars
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavkummari authored Aug 1, 2018
1 parent ae5f711 commit 76c5a2e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions terraform.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
localip = "18.206.162.9/32"
aws_profile = "kkummari"
aws_region = "us-east-1"
vpc_cidr = "10.0.0.0/16"
cidrs = {
public1 = "10.0.1.0/24"
public2 = "10.0.2.0/24"
private1 = "10.0.3.0/24"
private2 = "10.0.4.0/24"
rds1 = "10.0.5.0/24"
rds2 = "10.0.6.0/24"
rds3 = "10.0.7.0/24"
}
db_instance_class = "db.t2.micro"
dbname = "kkummaridb"
dbuser = "kkummari"
dbpassword = "kkummaripass"
key_name = "kkummari"
public_key_path = "/root/.ssh/kkummari.pub"
domain_name = "cloudcicd"
dev_instance_type = "t2.micro"
dev_ami = "ami-cfe4b2b0"
elb_healthy_threshold = "2"
elb_unhealthy_threshold = "2"
elb_timeout = "3"
elb_interval = "30"
asg_max = "2"
asg_min = "1"
asg_grace = "300"
asg_hct = "EC2"
asg_cap = "2"
lc_instance_type = "t2.micro"
delegation_set = "N1AIB4VHC2M4JF"
test = {}

0 comments on commit 76c5a2e

Please sign in to comment.