variable "dev_role_arn" {
  type        = string
  description = "The ARN of a role in the dev account for the AWS provider to assume"
  default     = "arn:aws:iam::103233932089:role/admin"
}

variable "dev_role_session_name" {
  type        = string
  description = "The role session name for the AWS provider configuration. This should be set to your AWS username."
}

variable "backup_role_arn" {
  type        = string
  description = "The ARN of a role in the backup account for the AWS provider to assume"
  default     = "arn:aws:iam::079637511089:role/admin"
}

variable "backup_role_session_name" {
  type        = string
  description = "The role session name for the AWS provider configuration. This should be set to your AWS username."
}

variable "environment" {
  type    = string
  default = "dev"
}

variable "application_family" {
  description = "The application family of the resource. E.g. data-platform, identity, etc."
  type        = string
  default     = "devops"
}

variable "service_name" {
  description = "The name of the service. E.g. terraform-airflow, terraform-iam, etc."
  type        = string
  default     = "terraform-airflow-test"
}

variable "team_name" {
  description = "The name of the Datadog team responsible for the resource."
  type        = string
  default     = "devops"
}
