13 lines
449 B
HCL
13 lines
449 B
HCL
# =============================================================================
|
|
# Firewalls Module Outputs
|
|
# =============================================================================
|
|
|
|
output "jump_host_firewall_id" {
|
|
description = "ID of the jump host firewall"
|
|
value = digitalocean_firewall.jump_host.id
|
|
}
|
|
|
|
output "forgejo_firewall_id" {
|
|
description = "ID of the Forgejo firewall"
|
|
value = digitalocean_firewall.forgejo.id
|
|
}
|