Files
terraform-course/for-demo-2/vars.tf
T
2019-10-30 16:05:22 +01:00

13 lines
212 B
Terraform

variable "AWS_REGION" {
type = string
default = "eu-west-1"
}
variable "project_tags" {
type = map(string)
default = {
Component = "Frontend"
Environment = "Production"
}
}