Add grimes to context vars

This commit is contained in:
Jake Howard 2025-06-27 22:12:45 +01:00
parent 695636582a
commit f6649c8559
No known key found for this signature in database
GPG key ID: 57AFB45680EDD477
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
"vps_hosts":
"casey_ip": "213.219.38.11"
"grimes_ip": "49.12.235.6"
"private_ipv6_marker": "2a01:7e00:e000:7f7::1"
"private_ipv6_range": "2a01:7e00:e000:7f7::1/128"
"walker_ip": "162.55.181.67"

View file

@ -5,6 +5,7 @@ resource "local_file" "hosts" {
private_ipv6_marker : local.private_ipv6_marker,
private_ipv6_range : local.private_ipv6_range,
walker_ip : hcloud_server.walker.ipv4_address,
grimes_ip : hcloud_server.grimes.ipv4_address,
}
})
filename = "${path.module}/../ansible/group_vars/all/vps-hosts.yml"