Skip to content

Commit

Permalink
added network skeleton provider and tfvars
Browse files Browse the repository at this point in the history
  • Loading branch information
surabhimaheshwari committed Nov 30, 2022
1 parent 3a4cddc commit 7f2046c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terraform/network_skeleton/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
provider "aws" {
region = "us-west-2"
}
14 changes: 14 additions & 0 deletions terraform/network_skeleton/terraform.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
alb_name = "t-alb"
avaialability_zones = ["us-west-2a", "us-west-2b"]
igw_name = "t-igw"
logs_bucket = "test-b01"
logs_bucket_arn = "arn:aws:s3:::test-b01"
nat_name = "t-nat"
private_subnets_cidr = ["10.0.64.0/18", "10.0.128.0/17"]
pub_rt_name = "pub-t"
pub_subnet_name = "public-t"
public_subnets_cidr = ["10.0.0.0/19", "10.0.32.0/19"]
public_web_sg_name = "ns-web-sg01"
pvt_rt_ame = "pvt-t"
pvt_subnet_name = "private-t"
pvt_zone_name = "abc.pqr.in"

0 comments on commit 7f2046c

Please sign in to comment.