variable "application_family" {
  type    = string
  default = "devops"
}

variable "team_name" {
  type    = string
  default = "devops"
}

variable "account_group" {
  description = "Account Group"
  default     = "orcd"
}

variable "environment" {
  default = "shared"
}

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

variable "resource_share_principals" {
  type        = set(string)
  description = "List of principals to share resources with using RAM"
  default = [
    "arn:aws:organizations::970903126758:organization/o-bqioddgr91", # Share with the whole AWS organization
  ]
}
