Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Fix linter issues for examples/lb/brownfield
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianczech committed Dec 21, 2023
1 parent 052e00b commit e1461d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/lb/brownfield/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ provider "azurerm" {
}


resource "azurerm_resource_group" "IPs" {
resource "azurerm_resource_group" "ips" {
name = "fosix-lb-ips"
location = "North Europe"
# tags = var.tags
Expand All @@ -29,18 +29,18 @@ resource "azurerm_public_ip" "this" {
}

name = "fosix-${each.key}"
resource_group_name = azurerm_resource_group.IPs.name
resource_group_name = azurerm_resource_group.ips.name
sku = "Standard"
allocation_method = "Static"
location = azurerm_resource_group.IPs.location
location = azurerm_resource_group.ips.location
zones = each.value

# tags = var.tags
}

resource "azurerm_network_security_group" "this" {
name = "fosix-existing-nsg"
resource_group_name = azurerm_resource_group.IPs.name
location = azurerm_resource_group.IPs.location
resource_group_name = azurerm_resource_group.ips.name
location = azurerm_resource_group.ips.location

}

0 comments on commit e1461d1

Please sign in to comment.