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

variable "environment" {
  description = "The environment to bootstrap"
  default     = "prod"
}

variable "application_family" {
  description = "The application family for the account"
  default     = "devops"
}

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

variable "admin_principals" {
  description = "A list of IAM principals that are allowed to assume the account admin role"
  default = [
    "arn:aws:iam::437795906767:user/jdenniss",
    "arn:aws:iam::437795906767:user/ntursunkul",
    "arn:aws:iam::437795906767:user/rdemoose",
    "arn:aws:iam::437795906767:user/rutra",
    "arn:aws:iam::437795906767:user/tmoin",
    "arn:aws:iam::437795906767:user/bbabiy",
    "arn:aws:iam::437795906767:user/tshagapov",
    "arn:aws:iam::437795906767:user/ikorniienko",
    "arn:aws:iam::437795906767:user/jlim",
    "arn:aws:iam::437795906767:user/dhiggins",
    "arn:aws:iam::437795906767:user/ebegovic",
    "arn:aws:iam::437795906767:user/tsouza",
  ]
}


locals {
  tags = {
    environment        = var.environment
    application_family = var.application_family
    terraformed        = true
  }
}
