- Implemented samba service

- Improved firewall rules
This commit is contained in:
2025-06-06 23:49:38 +02:00
parent 3ea65f060f
commit d3b8aff1ae
13 changed files with 285 additions and 53 deletions
+23
View File
@@ -0,0 +1,23 @@
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
}