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

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

variable "service_name" {
  default = "orch-mlflow-service"
}

variable "application_family" {
  default = "data-platform"
}

variable "artifact_s3_uri" {
  description = "S3 bucket where mlflow will store artifacts"
  default     = "s3://dev-cucumbers/mlflow_artifacts/"
}

variable "artifact_bucket" {
  description = "Name of the S3 bucket where mlflow will store artifacts"
  default     = "dev-cucumbers"
}

variable "previous_artifact_bucket" {
  description = "Name of the previous S3 bucket where mlflow stored artifacts"
  default     = "test-orcd-bucket"
}
