Files
AI-upflux-docprocessor/infra/ecr/variable.tf
2026-01-20 13:48:13 -03:00

16 lines
313 B
HCL

variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "repository_name" {
description = "Name of the ECR repository"
type = string
}
variable "environment" {
description = "Environment name"
type = string
default = "dev"
}