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-workspace-with-custom-vnet-address - Updated latest API version, NPIP default value to true #14017

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('The name of the Azure Databricks workspace to create.')
param workspaceName string
Expand All @@ -21,7 +21,7 @@ var managedResourceGroupName = 'databricks-rg-${workspaceName}-${uniqueString(wo
var trimmedMRGName = substring(managedResourceGroupName, 0, min(length(managedResourceGroupName), 90))
var managedResourceGroupId = '${subscription().id}/resourceGroups/${trimmedMRGName}'

resource workspace 'Microsoft.Databricks/workspaces@2023-02-01' = {
resource workspace 'Microsoft.Databricks/workspaces@2024-05-01' = {
name: workspaceName
location: location
sku: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"itemDisplayName": "Azure Databricks Workspace with custom Address Range",
"description": "This template allows you to create an Azure Databricks workspace with a custom virtual network address range.",
"summary": "Deploy an Azure Databricks workspace with a custom virtual network address range.",
"githubUsername": "sunainakrishnamoorthy",
"dateUpdated": "2024-02-23"
"githubUsername": "v-barshana",
"dateUpdated": "2024-05-13"
}
Loading