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

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

variable "bucket_prefix" {
  description = "Bucket name prefix."
  type        = string
  default     = "terraform-s3-test-orcd-bucket"
}
