feat: attached firewall to server instance

This commit is contained in:
2025-09-08 20:32:37 -04:00
parent 4c13b3d2cb
commit fd30ee265f
4 changed files with 47 additions and 4 deletions

5
terraform/outputs.tf Normal file
View File

@@ -0,0 +1,5 @@
output "server_ip" {
description = "The public address of the server."
value = hcloud_server.server_instance.ipv4_address
sensitive = false
}