variable "env" {
  type = string
}

variable "project_group" {
  type    = string
  default = "delphi"
}

variable "secret_id" {
  type    = string
  default = "slz/apple"
}

variable "kms_alias" {
  type    = string
  default = "secrets_general"
}

variable "policy_name" {
  type    = string
  default = "secrets_rw_slz_apple"
}

variable "role_name" {
  type    = string
  default = "secrets_rw_slz_apple"
}

variable "external_accounts" {
  type = list(object(
    { account_id = string, iam_entity = string, external_id = optional(string) }
  ))
  default = []
}
