Skip to content

Commit

Permalink
fix: update variable.tf to remove tflint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavcloud committed Sep 17, 2024
1 parent 49e17fb commit 771dc27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
output "firewall_id" {
description = "Firewall generated id"
value = azurerm_firewall.firewall[0].id
value = azurerm_firewall.firewall[0].id
}

output "firewall_name" {
value = azurerm_firewall.firewall[0].name
value = azurerm_firewall.firewall[0].name
description = "Firewall name"

}

output "private_ip_address" {
value = azurerm_firewall.firewall[0].ip_configuration[0].private_ip_address
value = azurerm_firewall.firewall[0].ip_configuration[0].private_ip_address
description = "Firewall private IP"

}
Expand Down
1 change: 0 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ variable "retention_days" {

variable "log_category_group" {
description = "log category group for collecting matrics"
type = "string"
default = "AllLogs"
}

0 comments on commit 771dc27

Please sign in to comment.