Closed evairmarinho closed 2 years ago
Possible order of arguments:
source
version
Possible code:
module "vpc" { count = 2 source = "terraform-aws-modules/vpc/aws" version = "3.11.0" name = "my-vpc-${count.index + 1}" cidr = "10.0.0.0/16" azs = ["us-east-1a", "us-east-1b", "us-east-1c"] private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] enable_nat_gateway = true enable_vpn_gateway = true tags = { Terraform = "true" } }
All these are meta-arguments that often make sense to put high at the top but I don't think this is something worth documenting as part of best practices TBH.
Thanks for the suggestion!
Possible order of arguments:
source
version
Possible code: