- Track .terraform.lock.hcl for reproducible provider versions - Add terraform.tfvars.example as a template for sensitive values - Fix .gitignore to not exclude lock file - Add default value for ssh_public_key variable
6 lines
227 B
Text
6 lines
227 B
Text
# terraform.tfvars.example
|
|
# Copy this to terraform.tfvars and fill in your values.
|
|
|
|
hcloud_token = "your-hetzner-api-token"
|
|
ssh_public_key = "ssh-ed25519 AAAA... your-key-here"
|
|
ssh_allowed_ips = ["0.0.0.0/0", "::/0"]
|