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

Update ArcBox to leverage bicepparam instead of json format for example parameter file #2589

Merged
merged 2 commits into from
Jul 4, 2024
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
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.

Loading