|
| 1 | +################################################################################ |
| 2 | +# Firewall |
| 3 | +################################################################################ |
| 4 | + |
| 5 | +output "firewall_id" { |
| 6 | + description = "The Amazon Resource Name (ARN) that identifies the firewall" |
| 7 | + value = module.network_firewall.id |
| 8 | +} |
| 9 | + |
| 10 | +output "firewall_arn" { |
| 11 | + description = "The Amazon Resource Name (ARN) that identifies the firewall" |
| 12 | + value = module.network_firewall.arn |
| 13 | +} |
| 14 | + |
| 15 | +output "firewall_status" { |
| 16 | + description = "Nested list of information about the current status of the firewall" |
| 17 | + value = module.network_firewall.status |
| 18 | +} |
| 19 | + |
| 20 | +output "firewall_update_token" { |
| 21 | + description = "A string token used when updating a firewall" |
| 22 | + value = module.network_firewall.update_token |
| 23 | +} |
| 24 | + |
| 25 | +################################################################################ |
| 26 | +# Firewall Logging Configuration |
| 27 | +################################################################################ |
| 28 | + |
| 29 | +output "firewall_logging_configuration_id" { |
| 30 | + description = "The Amazon Resource Name (ARN) of the associated firewall" |
| 31 | + value = module.network_firewall.logging_configuration_id |
| 32 | +} |
| 33 | + |
| 34 | +################################################################################ |
| 35 | +# Firewall Policy |
| 36 | +################################################################################ |
| 37 | + |
| 38 | +output "firewall_policy_id" { |
| 39 | + description = "The Amazon Resource Name (ARN) that identifies the firewall policy" |
| 40 | + value = module.network_firewall.policy_id |
| 41 | +} |
| 42 | + |
| 43 | +output "firewall_policy_arn" { |
| 44 | + description = "The Amazon Resource Name (ARN) that identifies the firewall policy" |
| 45 | + value = module.network_firewall.policy_arn |
| 46 | +} |
| 47 | + |
| 48 | +output "firewall_policy_update_token" { |
| 49 | + description = "A string token used when updating a firewall policy" |
| 50 | + value = module.network_firewall.policy_update_token |
| 51 | +} |
| 52 | + |
| 53 | +output "firewall_policy_resource_policy_id" { |
| 54 | + description = "The Amazon Resource Name (ARN) of the firewall policy associated with the resource policy" |
| 55 | + value = module.network_firewall.policy_resource_policy_id |
| 56 | +} |
| 57 | + |
| 58 | +################################################################################ |
| 59 | +# Rule Group - Stateful |
| 60 | +################################################################################ |
| 61 | + |
| 62 | +output "firewall_rule_group_stateful_id" { |
| 63 | + description = "The Amazon Resource Name (ARN) that identifies the rule group" |
| 64 | + value = module.network_firewall_rule_group_stateful.id |
| 65 | +} |
| 66 | + |
| 67 | +output "firewall_rule_group_stateful_arn" { |
| 68 | + description = "The Amazon Resource Name (ARN) that identifies the rule group" |
| 69 | + value = module.network_firewall_rule_group_stateful.arn |
| 70 | +} |
| 71 | + |
| 72 | +output "firewall_rule_group_stateful_update_token" { |
| 73 | + description = "A string token used when updating the rule group" |
| 74 | + value = module.network_firewall_rule_group_stateful.update_token |
| 75 | +} |
| 76 | + |
| 77 | +output "firewall_rule_group_stateful_resource_policy_id" { |
| 78 | + description = "The Amazon Resource Name (ARN) of the rule group associated with the resource policy" |
| 79 | + value = module.network_firewall_rule_group_stateful.resource_policy_id |
| 80 | +} |
| 81 | + |
| 82 | +################################################################################ |
| 83 | +# Rule Group - Stateless |
| 84 | +################################################################################ |
| 85 | + |
| 86 | +output "firewall_rule_group_stateless_id" { |
| 87 | + description = "The Amazon Resource Name (ARN) that identifies the rule group" |
| 88 | + value = module.network_firewall_rule_group_stateless.id |
| 89 | +} |
| 90 | + |
| 91 | +output "firewall_rule_group_stateless_arn" { |
| 92 | + description = "The Amazon Resource Name (ARN) that identifies the rule group" |
| 93 | + value = module.network_firewall_rule_group_stateless.arn |
| 94 | +} |
| 95 | + |
| 96 | +output "firewall_rule_group_stateless_update_token" { |
| 97 | + description = "A string token used when updating the rule group" |
| 98 | + value = module.network_firewall_rule_group_stateless.update_token |
| 99 | +} |
| 100 | + |
| 101 | +output "firewall_rule_group_stateless_resource_policy_id" { |
| 102 | + description = "The Amazon Resource Name (ARN) of the rule group associated with the resource policy" |
| 103 | + value = module.network_firewall_rule_group_stateless.resource_policy_id |
| 104 | +} |
0 commit comments