variable "aws_region" {
  default     = "eu-central-1"
  description = "AWS region"
}

variable "environments" {
  description = "The list of environments to create resources for."
  type        = set(string)
  default     = ["dev", "stage"]
}

locals {
  tags = {
    terraformed        = true
    application_family = "devops"
  }
}
