variable "aws_region" {
  type        = string
  description = "AWS region used to configure the AWS provider."
  default     = "us-east-1"
}

variable "environment" {
  type        = string
  description = "Deployment environment."
  default     = "prod"
}

variable "service_name" {
  type        = string
  description = "Service name used for the IAM user name and tagging."
  default     = "royaltyshare-awal-statements-uploader"
}

variable "application_family" {
  type        = string
  description = "Application family the service belongs to."
  default     = "accounting"
}

variable "team_name" {
  type        = string
  description = "Team responsible for the service (must be a valid Datadog team handle)."
  default     = "abacus"
}

variable "royaltyshare_account_id" {
  type        = string
  description = "AWS account ID of the royaltyshare prod account whose rpsapp20 instance role assumes this role."
  default     = "290365479392"
}

variable "rpsapp20_role_name" {
  type        = string
  description = "Name of the rpsapp20 instance IAM role permitted to assume this role."
  default     = "prod-rpsapp20-statement-attachments-uploader"
}
