-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added bicep cli into setup machine script added support for subscription Id, fixed bugs fixed test vm added support for signing marketplace agreement, refactoring refactoring improved UX, README, added E2E script improved README and UX added RDP for MacOS improved docs added bicepparam example for VM, changed path for extension scripts
- Loading branch information
1 parent
20fbd5f
commit de39523
Showing
20 changed files
with
1,204 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
03-test-vm.bicepparam | ||
01-prereq.bicepparam | ||
02-cbs.bicepparam | ||
tmp*.json | ||
*.bicepparam | ||
e2e-demo-params.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
using 'templates/prerequisites.bicep' | ||
|
||
param location = 'westeurope' | ||
param subscriptionId = 'xxxxxxxx-xxxx-xxxx-xxx-xxxxxxxxxxxx' | ||
param resourceGroupName = 'your-resource-group-name' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
using 'templates/cbs-managed-app.bicep' | ||
|
||
param location = 'westeurope' | ||
param resourceName = 'my-resource-name' | ||
param subscriptionId = 'xxxxxxxx-xxxx-xxxx-xxx-xxxxxxxxxxxx' | ||
param resourceGroupName = 'your-resource-group-name' | ||
|
||
param resourceName = 'my-resource-name' | ||
param alertRecipients = '[email protected]' | ||
param arrayName = 'my-array-name' | ||
param licenseKey = 'CBS-TRIAL-LICENSE' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.