mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
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
|
|
}
|