-
Notifications
You must be signed in to change notification settings - Fork 3
/
03-test-vm.bicepparam.example
28 lines (21 loc) · 1.29 KB
/
03-test-vm.bicepparam.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using './templates/test-vm.bicep'
param location = 'westeurope'
param subscriptionId = 'xxxxxxxx-xxxx-xxxx-xxx-xxxxxxxxxxxx'
param resourceGroupName = 'your-resource-group-name'
param extensionFileUrl = 'https://raw.githubusercontent.com/PureStorage-OpenConnect/cbs-deploy-bicep/main/templates/test-vm-extensions/setup-demo-cbs.ps1'
param extensionCustomizeUXFileUrl = 'https://raw.githubusercontent.com/PureStorage-OpenConnect/cbs-deploy-bicep/main/templates/test-vm-extensions/customize-vm.ps1'
// replace with IP address of load balancer of CBS (e.g. from output of 02-deploy-cbs.sh)
param PureManagementIP = '<< IP address of load balancer of CBS >>'
// this is CBS default username and password
param PureManagementUser = 'pureuser'
param PureManagementPassword = 'pureuser'
// VM machine name
param virtualMachineName = '<< VM name >>'
// VM size
param virtualMachineSize='Standard_D2s_v5'
// VM credentials
param adminUsername='<< VM admin username >>'
param adminPassword='<< VM admin password >>'
// value '$myIpAddress' will be replaced with your current public IP address
param whitelistedSourceAddress = '$myIpAddress'
param sshPrivateKeyContentInBase64 = '<---MY SSH PRIVATE KEY CONTENT (starting with -----BEGIN RSA PRIVATE KEY----- and ending with -----END RSA PRIVATE KEY-----) with no newlines-->'