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

variable "environment" {
  description = "Available values: dev, qa, prod."
  default     = "prod"
}

variable "service_name" {
  description = "The name of the associated application."
  default     = "rds-backup"
}

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

variable "backup_account_id" {
  type        = string
  description = "AWS account ID where backup task is running"
  default     = "079637511089"
}

variable "external_id" {
  type        = string
  description = "The external ID to use when assuming roles in other accounts"
  default     = "Yx20tijzVMwQ9eVYvdMv7nbTJijU4RBB"
}
