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

[hdinsight-hbase] - update api versions and add outputs #13957

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 @@ -6,8 +6,8 @@ products:
- azure-resource-manager
urlFragment: hdinsight-hbase-linux
languages:
- json
- bicep
- json
---
# Deploy a Linux-based HBase cluster in HDInsight

Expand Down
208 changes: 0 additions & 208 deletions quickstarts/microsoft.hdinsight/hdinsight-hbase-linux/azuredeploy.json

This file was deleted.

10 changes: 7 additions & 3 deletions quickstarts/microsoft.hdinsight/hdinsight-hbase-linux/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,21 @@ var defaultStorageAccount = {
type: 'Standard_LRS'
}

resource storageAccount 'Microsoft.Storage/storageAccounts@2021-08-01' = {
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = {
name: defaultStorageAccount.name
location: location
sku: {
name: defaultStorageAccount.type
}
kind: 'Storage'
properties: {}
properties: {
minimumTlsVersion: 'TLS1_2'
supportsHttpsTrafficOnly: true
allowBlobPublicAccess: false
}
}

resource cluster 'Microsoft.HDInsight/clusters@2021-06-01' = {
resource cluster 'Microsoft.HDInsight/clusters@2023-08-15-preview' = {
name: clusterName
location: location
properties: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "This template allows you to create a Linux-based HBase cluster in Azure HDInsight. ",
"summary": "Deploy a Linux-based HBase cluster in Azure HDInsight",
"githubUsername": "guyhay",
"dateUpdated": "2022-04-01",
"dateUpdated": "2024-04-04",
"type": "QuickStart"
}
Loading