juntekim.com/terraform/modules/container_registry/variables.tf
2026-02-17 23:28:47 +00:00

15 lines
318 B
HCL

variable "name" {
description = "Base name of the repository (without stage)"
type = string
}
variable "stage" {
description = "Deployment stage (e.g. dev, prod)"
type = string
}
variable "retain_count" {
description = "Number of images to retain"
type = number
default = 10
}