TerraHome/terraform/cloud-init.tf
MichaelFisher1997 70b9b5e5b7
All checks were successful
Gitea Actions Demo / Terraform Plan (push) Successful in 40s
terraform fmt
2025-04-17 22:28:45 +01:00

18 lines
426 B
HCL

### Global cloud-init template (for all VMs)
data "template_file" "cloud_init_global" {
template = file("${path.module}/files/cloud_init_global.yaml")
vars = {
hostname = "generic"
domain = "home.arpa"
TS_AUTHKEY = var.TS_AUTHKEY
}
}
resource "local_file" "cloud_init_global" {
content = data.template_file.cloud_init_global.rendered
filename = "${path.module}/files/cloud_init_global.yaml"
}