##################################
#         Common Variables       #
##################################

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 = "Delivery-Media-Services"
    Owner         = "Mandar Padsalgikar"
    Project-Code  = "SME-2000-0306G"
    Project-Name  = "Delivery-Media-Services"
    OPS           = "STND"
    DATA          = "NORMAL"
  }
}

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"
  }
}

variable "region" {
  description = "AWS region"
  type        = string
  default     = "us-east-1"
}
