##################################
#         Common Variables       #
##################################
variable region {
  type        = string
  default     = "eu-central-1"
  description = "description"
}


variable "common_tags" {
  description = "Common Tags for EC2 and can be used for other resources as well"
  type        = map(string)
  default = {
    Terraform     = "True"
    Business-Unit = "SME-AOMA-Core"
    Owner         = "Nathaniel Lovett"
    Project-Code  = "SME-2000-0306A"
    Project-Name  = "AOMA-Core"
    OPS           = "STND"
    DATA          = "NORMAL"
    map-migrated  = "migKNBMDMW06I"
  }
}

variable "cloudops_firewall_protected_tag" {
  description = "Used to tag an EC2 instance as being protected by a firewall, either Network Firewall or PaloAlto"
  type        = map(string)

  default = {
    CLOPS_FW = "YES"
  }
}
