Skip to main content

managers_encryption_keys

Creates, updates, deletes, gets or lists a managers_encryption_keys resource.

Overview

Namemanagers_encryption_keys
TypeResource
Idazure_extras.storsimple_1200_series.managers_encryption_keys

Fields

The following fields are returned by SELECT queries:

The encryption key.

NameDatatypeDescription
encryptionAlgorithmstringAlgorithm used to encrypt "Value"
valuestringThe value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none
valueCertificateThumbprintstringThumbprint cert that was used to encrypt "Value"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, managerNameReturns the symmetric encryption key of the manager.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

Returns the symmetric encryption key of the manager.

SELECT
encryptionAlgorithm,
value,
valueCertificateThumbprint
FROM azure_extras.storsimple_1200_series.managers_encryption_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;