A terraform module to provide a in AWS/AZURE/ETC,ETC.
This should be used an a generic template to be included in every terraform module.
name- variable nameenvironment- variable environment
module "demo" {
source = "github.com/my-repo/demo"
name = "whatever variable you would like to pass"
tags {
"Environment" = "${var.environment}"
}
}name- does what it says on the tinenvironment- does what it says on the tin