Closed typerlc closed 7 years ago
Allow caller to pass additional tags to be added to all resources. e.g. this can be used to add a tag defining the environment.
Usage is like:
module "vpc" { source = "git@github.com:typerlc/tf_aws_vpc.git?ref=add_tags_variable" name = ... cidr = ... azs = ... private_subnets = ... public_subnets = ... tags { "Terraform" = "true" "Environment" = "${var.environment}" } }
Very good! Could you please update README.md with example.
README.md
Done.
Allow caller to pass additional tags to be added to all resources. e.g. this can be used to add a tag defining the environment.
Usage is like: