Skip to content

Commit

Permalink
ref: moved networking components to network module
Browse files Browse the repository at this point in the history
Signed-off-by: Fredrik Klingenberg <[email protected]>
  • Loading branch information
fredrkl committed Oct 31, 2023
1 parent 9f94e4b commit b51fb92
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ moved {
to = module.network.azurerm_virtual_network.example
}

moved {
from = module.aks.azurerm_subnet.aks-data-plane
to = module.network.azurerm_subnet.aks-data-plane
}

moved {
from = module.aks.azurerm_network_security_group.example
to = module.network.azurerm_network_security_group.example
}

moved {
from = module.aks.azurerm_subnet_network_security_group_association.example
to = module.network.azurerm_subnet_network_security_group_association.example
}

terraform {
required_version = ">= 1.6"
required_providers {
Expand Down

0 comments on commit b51fb92

Please sign in to comment.