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

variable "environment" {
  default = "shared"
}

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

variable "accounts" {
  type = list(map(any))
}

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