Skip to content

Commit

Permalink
Merge pull request #2 from terraform-modules/add-outputs-nacl
Browse files Browse the repository at this point in the history
add nacl_info output
  • Loading branch information
badra001 committed Jun 29, 2021
2 parents 309953d + 3594076 commit 0d8a746
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 3 additions & 2 deletions peer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ No requirements.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_nacl_rule_peer"></a> [nacl\_rule\_peer](#module\_nacl\_rule\_peer) | git@github.e.it.census.gov:terraform-modules/aws-vpc-setup.git//nacl-rules | |
| <a name="module_nacl_rule_self"></a> [nacl\_rule\_self](#module\_nacl\_rule\_self) | git@github.e.it.census.gov:terraform-modules/aws-vpc-setup.git//nacl-rules | |
| <a name="module_nacl_rule_peer"></a> [nacl\_rule\_peer](#module\_nacl\_rule\_peer) | git@github.e.it.census.gov:terraform-modules/aws-vpc-setup.git//nacl-rules | n/a |
| <a name="module_nacl_rule_self"></a> [nacl\_rule\_self](#module\_nacl\_rule\_self) | git@github.e.it.census.gov:terraform-modules/aws-vpc-setup.git//nacl-rules | n/a |

## Resources

Expand Down Expand Up @@ -153,6 +153,7 @@ No requirements.

| Name | Description |
|------|-------------|
| <a name="output_nacl_info"></a> [nacl\_info](#output\_nacl\_info) | Information about NACL Rules from Peering |
| <a name="output_network_acl_ids"></a> [network\_acl\_ids](#output\_network\_acl\_ids) | Network ACL IDs for peering |
| <a name="output_peering_info"></a> [peering\_info](#output\_peering\_info) | Peering Information |
| <a name="output_route_table_ids"></a> [route\_table\_ids](#output\_route\_table\_ids) | Route Table IDs for Peering |
8 changes: 8 additions & 0 deletions peer/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ output "peering_info" {
}
}
}

output "nacl_info" {
description = "Information about NACL Rules from Peering"
value = {
self = module.nacl_rule_self.info
peer = module.nacl_rule_peer.info
}
}

0 comments on commit 0d8a746

Please sign in to comment.