-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: removed deprecations and tflint warnings
- Loading branch information
1 parent
0eaf96a
commit 34a53f1
Showing
7 changed files
with
61 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,38 @@ | ||
output "firewall_id" { | ||
description = "Firewall generated id" | ||
value = join("", azurerm_firewall.firewall.*.id) | ||
value = azurerm_firewall.firewall[0].id | ||
} | ||
|
||
output "firewall_name" { | ||
value = join("", azurerm_firewall.firewall.*.name) | ||
value = azurerm_firewall.firewall[0].name | ||
description = "Firewall name" | ||
|
||
} | ||
|
||
output "private_ip_address" { | ||
value = azurerm_firewall.firewall[*].ip_configuration[0].private_ip_address | ||
value = azurerm_firewall.firewall[0].ip_configuration[0].private_ip_address | ||
description = "Firewall private IP" | ||
|
||
} | ||
|
||
output "public_ip_id" { | ||
value = azurerm_public_ip.public_ip.*.id | ||
value = azurerm_public_ip.public_ip[0].id | ||
} | ||
|
||
output "public_ip_address" { | ||
value = azurerm_public_ip.public_ip.*.ip_address | ||
value = azurerm_public_ip.public_ip[0].ip_address | ||
} | ||
|
||
output "firewall_policy_id" { | ||
value = join("", azurerm_firewall_policy.policy.*.id) | ||
value = azurerm_firewall_policy.policy[0].id | ||
} | ||
|
||
output "prefix_public_ip_id" { | ||
value = azurerm_public_ip.prefix_public_ip.*.id | ||
value = azurerm_public_ip.prefix_public_ip[0].id | ||
} | ||
|
||
output "prefix_public_ip_address" { | ||
value = azurerm_public_ip.prefix_public_ip.*.ip_address | ||
value = azurerm_public_ip.prefix_public_ip[0].ip_address | ||
} | ||
|
||
output "public_ip_prefix_id" { | ||
value = join("", azurerm_public_ip_prefix.pip-prefix.*.id) | ||
} | ||
value = azurerm_public_ip_prefix.pip-prefix[0].id | ||
} |
Oops, something went wrong.