Skip to content

Commit

Permalink
update changelog (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
gareda authored Jan 15, 2024
1 parent f59bf5f commit f51deb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- markdownlint-disable MD041 MD013 -->
## 2.0.0 (Unreleased)
## 2.0.0 (January 15, 2024)

BREAKING CHANGES:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following outputs are exported:
|name|The name of the network security group.|no|
|resource_group_name|The name of the resource group in which to create the network security group.|no|
|location|The location/region where the network security group is created.|no|
|tags|The tags assigned to the resource.|no|
|inbound_rules|Blocks containing configuration of each inbound security rule.|no|
|outbound_rules|Blocks containing configuration of each outbound security rule.|no|
|tags|The tags assigned to the resource.|no|
<!-- END_TF_DOCS -->
10 changes: 5 additions & 5 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ output "location" {
description = "The location/region where the network security group is created."
}

output "tags" {
value = azurerm_network_security_group.nsg.tags
description = "The tags assigned to the resource."
}

output "inbound_rules" {
value = { for rule in azurerm_network_security_rule.inbounds : rule.name => rule }
description = "Blocks containing configuration of each inbound security rule."
Expand All @@ -29,8 +34,3 @@ output "outbound_rules" {
description = "Blocks containing configuration of each outbound security rule."
# module.MODULE_NAME.outbound_rules["OUTBOUND_RULE_NAME"].id
}

output "tags" {
value = azurerm_network_security_group.nsg.tags
description = "The tags assigned to the resource."
}

0 comments on commit f51deb5

Please sign in to comment.