TerraHome/terraform/cloud-init.tf
MichaelFisher1997 93d3f94100
Some checks failed
Gitea Actions Demo / Terraform Plan (push) Failing after 22s
terraform fmt
2025-04-17 22:24:54 +01:00

16 lines
368 B
HCL

### Global cloud-init template (for all VMs)
data "template_file" "cloud_init_global" {
template = file("${path.module}/files/cloud_init_base.yaml")
vars = {
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"
}