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

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

variable "s3_bucket_name" {
  description = "S3 bucket name"
  default     = "knr-payments"
}

variable "application_family" {
  description = "The name of this group of applications."
  default     = "accounting"
}

variable "replication_source_iam_role_arn" {
  description = "The ARN of the Replication Source Bucket Role"
  default     = "arn:aws:iam::437795906767:role/S3-qa-lambda-documents-knr-payments-replication-role"
}
