Skip to content

Commit 5db4a3b

Browse files
committed
Fix formatting in output values for Firewall and CDN modules
1 parent d274986 commit 5db4a3b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

modules/azurerm/Firewall/output.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ output "firewall_public_ip_names" {
4040
}
4141

4242
output "firewall_public_ip_associations" {
43-
value = {for pip in azurerm_public_ip.firewall_public_ip : pip.name => pip.ip_address}
43+
value = { for pip in azurerm_public_ip.firewall_public_ip : pip.name => pip.ip_address }
4444
depends_on = [azurerm_public_ip.firewall_public_ip]
4545
}

modules/azurerm/Storage-Account-Static-Website-CDN/outputs.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ output "storage_account_secondary_web_endpoint" {
4545

4646
output "cdn_profile_name" {
4747
depends_on = [azurerm_cdn_profile.cdn_profile]
48-
value = azurerm_cdn_profile.cdn_profile.name
48+
value = azurerm_cdn_profile.cdn_profile.name
4949
}
5050

5151
output "cdn_profile_id" {
5252
depends_on = [azurerm_cdn_profile.cdn_profile]
53-
value = azurerm_cdn_profile.cdn_profile.id
53+
value = azurerm_cdn_profile.cdn_profile.id
5454
}
5555

5656
output "cdn_endpoint_fqdn" {
5757
depends_on = [azurerm_cdn_endpoint.cdn_endpoint]
58-
value = azurerm_cdn_endpoint.cdn_endpoint.fqdn
58+
value = azurerm_cdn_endpoint.cdn_endpoint.fqdn
5959
}
6060

6161
output "cdn_endpoint_id" {
6262
depends_on = [azurerm_cdn_endpoint.cdn_endpoint]
63-
value = azurerm_cdn_endpoint.cdn_endpoint.id
63+
value = azurerm_cdn_endpoint.cdn_endpoint.id
6464
}

0 commit comments

Comments
 (0)