15 lines
318 B
HCL
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
|
|
}
|