Skip to content

Commit

Permalink
Merge pull request #2589 from janegilring/arcbox_3.0
Browse files Browse the repository at this point in the history
 Update ArcBox to leverage bicepparam instead of json format for example parameter file
  • Loading branch information
janegilring authored Jul 4, 2024
2 parents 8b85458 + 69cb307 commit d1a48ce
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 34 deletions.
2 changes: 1 addition & 1 deletion azure_jumpstart_arcbox/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ param guid string = substring(newGuid(),0,4)
param location string = resourceGroup().location

@description('The custom location RPO ID')
param customLocationRPOID string
param customLocationRPOID string?

var templateBaseUrl = 'https://raw.githubusercontent.com/${githubAccount}/azure_arc/${githubBranch}/azure_jumpstart_arcbox/'
var aksArcDataClusterName = 'ArcBox-AKS-Data-${guid}'
Expand Down
21 changes: 21 additions & 0 deletions azure_jumpstart_arcbox/bicep/main.bicepparam
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using 'main.bicep'

param sshRSAPublicKey = '<your RSA public key>'

param spnClientId = '<your service principal client id>'

param spnClientSecret = '<your service principal secret>'

param spnTenantId = '<your spn tenant id>'

param windowsAdminUsername = 'arcdemo'

param windowsAdminPassword = '<your windows admin password>'

param logAnalyticsWorkspaceName = '<your unique Log Analytics workspace name>'

param flavor = 'ITPro'

param deployBastion = false

param vmAutologon = true
33 changes: 0 additions & 33 deletions azure_jumpstart_arcbox/bicep/main.parameters.json

This file was deleted.

0 comments on commit d1a48ce

Please sign in to comment.