xxxxxxxxxx
module "vpc" {
source = "gitlab.com/learning-lab-dallas/vpc/aws"
version = "0.1.15"
enable_public_subnets = true
vpc_cidr = var.vpc_cidr
private_subnets = var.private_subnets
public_subnets = var.public_subnets
acct_short_name = var.acct_short_name
role = var.role
environment = var.environment
}
xxxxxxxxxx
#Commands for Terraform fmt
#to See the difference
terraform fmt -diff
#for subdirectories formatting
terraform fmt -recursive
#disable the list of file changes
terraform fmt -list=false