main
1output "server_ip" {
2 description = "Public IPv4 address of carthage"
3 value = hcloud_server.carthage.ipv4_address
4}
5
6output "server_ipv6" {
7 description = "Public IPv6 address of carthage"
8 value = hcloud_server.carthage.ipv6_address
9}
10
11output "server_id" {
12 description = "Hetzner server ID"
13 value = hcloud_server.carthage.id
14}