variable "aws_region" {
  description = "AWS region"
  default     = "us-east-1"
}

variable "application_family" {
  type        = string
  description = "Name of application family"
  default     = "infosec"
}

variable "assume_role_principals" {
  type        = list(string)
  description = "The list of principals which will be allowed to assume this role (provided the principal also has an IAM policy which allows the action)"
  default = [
    "arn:aws:iam::370134896156:role/generate-credentials",
  ]
}

variable "coalfire_external_id" {
  type        = string
  description = "Coalfire external id"
  default     = "7c559ef340238c0e188ddeab790424ba54c383a3604b24b982d05f776ffb25bb"
}
