Files
a13labs.infra/terraform/modules/apps/samba/variables.tf
T

24 lines
489 B
Terraform
Raw Normal View History

2025-06-06 23:49:38 +02:00
variable "tag" {
description = "The version of app to install"
type = string
default = "latest"
}
variable "shared_folder" {
description = "Path to the shared folder on the host"
type = string
}
variable "samba_username" {
description = "Username for Samba access"
type = string
default = "samba"
}
variable "samba_password" {
description = "Password for Samba access"
type = string
default = "samba"
sensitive = true
}