tf-docker-k8 / terraform-aws-vpc-practice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VPC Module

This module is going to create following resources.

  • VPC
  • Internet Gateway
  • 2 public subnets
  • 1 public route table
  • Assocition between public subnets and public route table
  • Assocition between private subnets and private route table

Arguments

vpc_cidr (Optional) - Default value is 10.0.0.0/16
vpc_tags (Optional) - User can provide tags, other wise empty
public_subnet_cidr (Required) - User must provide 2 valid subnet CIDR
public_subnet_names (Required) - User must provide 2 valid subnet names
private_subnet_cidr (Required) - User must provide 2 valid subnet CIDR
private_subnet_names (Required) - User must provide 2 valid subnet names
public_route_table_tags (Optional) - User can provide tags, other wise empty

About


Languages

Language:HCL 100.0%