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-managed-services-customer-managed-keys - Updated latest API version, NPIP default value to true #14013

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
Expand Up @@ -9,7 +9,7 @@ param workspaceName string = 'default'
param pricingTier string = 'premium'

@description('Specifies whether to deploy Azure Databricks workspace with secure cluster connectivity (SCC) enabled or not (No Public IP)')
param enableNoPublicIp bool = false
param enableNoPublicIp bool = true

@description('The object ID of the AzureDatabricks enterprise application.')
param ObjectID string
Expand Down Expand Up @@ -45,7 +45,7 @@ module addAccessPolicy './nested_addAccessPolicy.bicep' = {
}
}

resource workspace 'Microsoft.Databricks/workspaces@2023-02-01' = {
resource workspace 'Microsoft.Databricks/workspaces@2024-05-01' = {
name: workspaceName
location: location
sku: {
Expand Down Expand Up @@ -73,4 +73,4 @@ resource workspace 'Microsoft.Databricks/workspaces@2023-02-01' = {
}
}

output workspace object = workspace.properties
output workspace object = workspace.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"itemDisplayName": "Deploy Azure Databricks Workspace with Managed Services CMK",
"description": "This template allows you to create an Azure Databricks workspace with Managed Services CMK.",
"summary": "Deploy Azure Databricks Workspace with Managed Services CMK.",
"githubUsername": "veenamadhuriyedavelly",
"dateUpdated": "2023-09-25",
"githubUsername": "v-barshana",
"dateUpdated": "2024-05-13",
"tags": {
"resource": "Azure Databricks",
"level": "Intermediate"
Expand Down
Loading