-
Notifications
You must be signed in to change notification settings - Fork 3
/
quickstart-params.sh.example
55 lines (37 loc) · 1.82 KB
/
quickstart-params.sh.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# location where the all resources will be deployed, e.g. 'eastus'
location='<< location >>'
# subscription ID where the all resources will be deployed
subscriptionId='<< subscription ID >>'
# resource group (RG) where the all resources will be deployed
resourceGroupName="test-cbs-qs-"`date '+%F-%H-%M-%S'`"-rg"
# the availability zone (AZ) for VMs inside CBS, e.g. 1
# check support article if given AZ is currently supported within region
# https://support.purestorage.com/Pure_Cloud_Block_Store/How_to_Check_Instance_Availability_Required_for_Pure_Cloud_Block_Store_Deployment#Check_Azure_Resources
availabilityZone=1
# email addresses (comma-delimited) for array alerts
alertRecipients='<< email address >>'
# test VM size
virtualMachineSize='Standard_D4s_v5'
# test VM credentials
adminUsername='<< test VM admin username >>'
adminPassword='<< test VM admin password >>'
#####################################
# Other parameters for advanced users
#####################################
# managed app resource name in the RG
arrayResourceName=my-test-cbs
# array name in Purity
arrayName="${resourceGroupName}-cbs"
# the value 'CBS-TRIAL-LICENSE' is for 40-days trial license
licenseKey='CBS-TRIAL-LICENSE'
# CBS array SKUs options: 'V10MUR1', 'V10MP2R2', 'V20MUR1', 'V20MP2R2'
cbsModelSku='V20MP2R2'
orgDomain='trialbicep.purestorage'
# scripts used for test VM customization
extensionFileUrl='https://raw.githubusercontent.com/PureStorage-OpenConnect/cbs-deploy-bicep/main/templates/test-vm-extensions/setup-demo-cbs.ps1'
extensionCustomizeUXFileUrl='https://raw.githubusercontent.com/PureStorage-OpenConnect/cbs-deploy-bicep/main/templates/test-vm-extensions/customize-vm.ps1'
# this is CBS default username and password
pureManagementUser='pureuser'
pureManagementPassword='pureuser'
# test VM resource name
virtualMachineName='test-win-vm'