Skip to content

Commit 62ca583

Browse files
committed
Fix command in OpenShift BYOK article
Specifying this argument leads to the following error: ``` az keyvault create -n $KEYVAULT_NAME \ -g $RESOURCEGROUP \ -l $LOCATION \ --enable-purge-protection true \ --enable-soft-delete true unrecognized arguments: --enable-soft-delete true ``` I'm not sure if there's another argument that should be specified instead, or if there are other occurrences here that should also be changed.
1 parent 62e14b2 commit 62ca583

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

articles/openshift/howto-byok.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ You must use an Azure Key Vault instance to store your keys. Create a new Key Va
5353
az keyvault create -n $KEYVAULT_NAME \
5454
-g $RESOURCEGROUP \
5555
-l $LOCATION \
56-
--enable-purge-protection true \
57-
--enable-soft-delete true
56+
--enable-purge-protection true
5857
5958
az keyvault key create --vault-name $KEYVAULT_NAME \
6059
-n $KEYVAULT_KEY_NAME \

0 commit comments

Comments
 (0)