14 lines
449 B
Terraform
14 lines
449 B
Terraform
|
|
# =============================================================================
|
||
|
|
# 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
|
||
|
|
}
|