Comment
Databricks Partner

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
}

MajaGrubbeHil_0-1726826824947.png