Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Databricks-all-in-one-template-for-vnet-injection-with-nat-gateway - Updated latest API version, NPIP default value to true #14019

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@description('Specifies whether to deploy Azure Databricks workspace with Secure Cluster Connectivity (No Public IP) enabled or not')
param disablePublicIp bool = false
param disablePublicIp bool = true

@description('Location for all resources.')
param location string = resourceGroup().location
Expand Down Expand Up @@ -136,7 +136,7 @@ resource vnet 'Microsoft.Network/virtualNetworks@2023-09-01' = {
}
}

resource workspace 'Microsoft.Databricks/workspaces@2023-02-01' = {
resource workspace 'Microsoft.Databricks/workspaces@2024-05-01' = {
location: location
name: workspaceName
sku: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"itemDisplayName": "AzureDatabricks Template for VNet Injection with NAT Gateway",
"description": "This template allows you to create a NAT gateway, network security group, a virtual network and an Azure Databricks workspace with the virtual network.",
"summary": "Deploy a NAT Gateway, Network Security Group, a Virtual Network and an Azure Databricks Workspace with the Virtual Network.",
"githubUsername": "sunainakrishnamoorthy",
"dateUpdated": "2024-02-23",
"githubUsername": "v-barshana",
"dateUpdated": "2024-05-13",
"tags": {
"subscriptiontype": "Azure4Student",
"resource": "Azure DataBricks",
Expand Down
Loading