Files
homeserver/infra/terraform/kubernetes/variables.tf
Taqi Tahmid ead2340294 infra/terraform: add k8s module file for my portfolio
- added k8s module file for my portfolio manifest
2025-06-30 22:42:32 +03:00

35 lines
725 B
HCL

# variables for minio backend configuration
variable "minio_access_key" {
description = "MinIO access key"
type = string
}
variable "minio_secret_key" {
description = "MinIO secret key"
type = string
}
variable "minio_endpoint" {
description = "MinIO API endpoint"
type = string
}
variable "portfolio_host" {
description = "Host for the portfolio application"
type = string
}
variable "docker_registry_host" {
description = "Host for the Docker registry"
type = string
}
variable "docker_username" {
description = "Docker registry username"
type = string
}
variable "docker_password" {
description = "Docker registry password"
type = string
}