##################################
#         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"
    Environment   = "Prod"
    Business-Unit = "Global-DS"
    Owner         = "Dave Wenger"
    Project-Code  = "SME-GLOBAL-DS"
    Project-Name  = "Global-DS-MSK"
    OPS           = "STND"
    DATA          = "NORMAL"
  }
}


variable "environment" {
  description = "Environment name"
  default     = "prod"
}

variable "account_group" {
  description = "The name of the account group that the account belongs to"
  default     = "global-ds"
}

variable "resource_share_principals" {
  type        = set(string)
  description = "List of principals to share resources with using RAM"
  default = [
    "arn:aws:organizations::970903126758:ou/o-bqioddgr91/ou-ax9e-vu43qt3i", # The Orchard OU
    "arn:aws:organizations::970903126758:ou/o-bqioddgr91/ou-ax9e-ouayejxi", # Data Strategy aka GDB OU
  ]
}
