variable "aws_region" {
  default = "us-east-1"
}

variable "environment" {
  description = "The environment to bootstrap"
  default     = "prod"
}

variable "application_family" {
  description = "The application family for the account"
  default     = "devops"
}

locals {
  tags = {
    environment        = var.environment
    application_family = var.application_family
    terraformed        = true
  }
  infosec_tags = merge(local.tags, {
    application_family = "infosec"
  })
}
