bouwroute-devops/infra/modules/harbor/variables.tf

18 lines
385 B
HCL

variable "harbor_username" {
type = string
description = "Username for Harbor"
}
variable "harbor_password" {
type = string
description = "Password for Harbor"
sensitive = true
}
# If using bearer token instead of username/password:
# variable "harbor_token" {
# type = string
# description = "Bearer token for Harbor"
# sensitive = true
# }