Skip to content

Commit

Permalink
added support for SKU V10MP2R2 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjirovsky-pure authored Aug 19, 2024
1 parent a41fabc commit 49b7c6c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 02-cbs.bicepparam.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ param resourceName = 'my-resource-name'
param alertRecipients = '[email protected]'
param arrayName = 'my-array-name'
param licenseKey = 'CBS-TRIAL-LICENSE'
param cbsModelSku = 'V20MUR1'
param cbsModelSku = 'V10MP2R2'
param orgDomain = 'myorgdomain.dev'
// replace with resource ID of the managed identity (e.g. from output of 01-deploy-prerequisities.sh)
param managedUserIdentityId = '/subscriptions/<---MY SUBSCRITION ID--->/resourceGroups/<---RG NAME--->/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<---NAME OF USER MANAGED IDENTITY --->'
// replace with vNET name (e.g. from output of 01-deploy-prerequisities.sh)
param vnetName = 'my-vnet-name'
param availabilityZone = 1
// replace with an identity (user or group) within tenant, who would approve the JIT requests to manage CBS app resources.
param jitApprovers = [{displayName:'my-cloud-ops-group',id:'<---OBJECT ID OF USER OR GROUP--->',type:'<--- 'group' OR 'user'--->'}]
param jitApprovers = [{displayName:'my-cloud-ops-group',id:'<---OBJECT ID OF USER OR GROUP--->',type:'<--- 'group' OR 'user'--->'}]
4 changes: 2 additions & 2 deletions e2e-demo-params.sh.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ arrayName="${resourceGroupName}-cbs"
# the value 'CBS-TRIAL-LICENSE' is for 40-days trial license
licenseKey='CBS-TRIAL-LICENSE'

# CBS array SKUs options: 'V10MUR1', 'V20MUR1', 'V20MP2R2'
# CBS array SKUs options: 'V10MUR1', 'V10MP2R2', 'V20MUR1', 'V20MP2R2'
cbsModelSku='V20MP2R2'

orgDomain='trialbicep.purestorage'
Expand All @@ -52,4 +52,4 @@ pureManagementUser='pureuser'
pureManagementPassword='pureuser'

# test VM resource name
virtualMachineName='test-win-vm'
virtualMachineName='test-win-vm'
2 changes: 1 addition & 1 deletion script-modules/common.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

CLI_VERSION='1.0.5'
CLI_VERSION='1.0.6'


# terminal colors
Expand Down
2 changes: 1 addition & 1 deletion templates/cbs-managed-app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ param alertRecipients string
@description('CBS array name in Purity')
param arrayName string

@allowed(['V10MUR1', 'V20MUR1', 'V20MP2R2'])
@allowed(['V10MUR1', 'V10MP2R2', 'V20MUR1', 'V20MP2R2'])
param cbsModelSku string

@allowed([1,2,3])
Expand Down

0 comments on commit 49b7c6c

Please sign in to comment.