Comment
09-20-2024
03:10 AM
09-20-2024
03:10 AM
In my fresh created NSG for Databricks I don't see the new rules either. Should they be created in our IaC?
My terraform fo the NSG is as simple as this:
/*****************************************************************************************************
Network security group for public subnet - This is where any firewall type activity will be setup
******************************************************************************************************/
resource "azurerm_network_security_group" "public_nsg" {
name = var.public_network_security_group_name == "xxx"
resource_group_name = var.resource_group_name
location = var.location
tags = var.tags
}