stage #14

Merged
micqdf merged 2 commits from stage into master 2025-04-17 21:29:52 +00:00
2 changed files with 3 additions and 4 deletions
Showing only changes of commit 70b9b5e5b7 - Show all commits

View File

@ -1,9 +1,11 @@
### Global cloud-init template (for all VMs)
data "template_file" "cloud_init_global" {
template = file("${path.module}/files/cloud_init_base.yaml")
template = file("${path.module}/files/cloud_init_global.yaml")
vars = {
hostname = "generic"
domain = "home.arpa"
TS_AUTHKEY = var.TS_AUTHKEY
}
}

View File

@ -1,7 +1,4 @@
#cloud-config
hostname: ${hostname}
fqdn: ${hostname}.${domain}
runcmd:
- curl -fsSL https://tailscale.com/install.sh | sh
- tailscale up --auth-key=${TS_AUTHKEY}