Files

10 lines
192 B
Terraform
Raw Permalink Normal View History

2025-06-06 23:49:38 +02:00
locals {
samba_version = var.tag
samba_config = templatefile("${path.module}/resources/samba.conf.tpl", {
shares = var.shares
})
samba_config_hash = sha256(local.samba_config)
2025-06-06 23:49:38 +02:00
}