16 lines
313 B
HCL
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"
|
|
} |