Some checks failed
Terraform Plan / Terraform Plan (push) Failing after 9s
Provision 3 thin control planes and 3 workers with role-specific sizing and VMID ranges (701/711), generate per-node cloud-init snippets with SSH key injection, and add NixOS kubeadm host/module scaffolding for cp-1..3 and wk-1..3.
16 lines
245 B
Smarty
16 lines
245 B
Smarty
#cloud-config
|
|
hostname: ${hostname}
|
|
manage_etc_hosts: true
|
|
resolv_conf:
|
|
nameservers:
|
|
- 8.8.8.8
|
|
- 1.1.1.1
|
|
|
|
preserve_hostname: false
|
|
fqdn: ${hostname}.${domain}
|
|
|
|
users:
|
|
- name: micqdf
|
|
ssh_authorized_keys:
|
|
- ${SSH_KEY_PUBLIC}
|