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

variable "environment" {
  type        = string
  default     = "backup"
  description = "The environment"
}

variable "service_name" {
  type        = string
  default     = "vault-backup"
  description = "The name of the service"
}

variable "application_family" {
  type        = string
  default     = "devops"
  description = "The name of the application family"
}

variable "vault_backup_role_arns" {
  type = set(string)
  default = [
    "arn:aws:iam::437795906767:role/prod-vault-backup-avl-task-role",
  ]
  description = "A list of roles to grant access to publish backups"
}
