##################### COMMON VARIABLES #######################
variable "account_name" {
  description = "Name of the AWS account"
  type        = string
}

variable "region" {
  description = "Name of the region"
  type        = string
}

#variable "assume_role" {
#  description = "The role used for infra changes"
#  type        = string
#}

variable "tags" {
  description = "A map of tags to add to all resources"
  type        = map(string)

  default = {
    Terraform     = "True"
    Business-Unit = "SME-AMP"
    Environment   = "Prod"
    Owner         = "Nathaniel Lovett"
    Project-Code  = "SME-AMP"
    Project-Name  = "AMP"
  }
}
