pvillard31 commented on a change in pull request #4863:
URL: https://github.com/apache/nifi/pull/4863#discussion_r697334747
##########
File path:
nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/storage/utils/AzureStorageUtils.java
##########
@@ -156,6 +164,57 @@
.required(false)
.build();
+ public static final PropertyDescriptor ACCOUNT_NAME_SECRET = new
PropertyDescriptor.Builder()
+ .name("storage-account-name-secret")
+ .displayName("Storage Account Name Secret Name")
+ .description("The name of the Azure Key Vault secret containing
the Azure Storage account " +
+ " name. The Controller Service will use this name to get
the value of the secret from " +
+ " Key Vault.")
+ .addValidator(StandardValidators.NON_BLANK_VALIDATOR)
+ .required(true)
+ .sensitive(true)
+ .build();
+
+ public static final PropertyDescriptor ACCOUNT_KEY_SECRET = new
PropertyDescriptor.Builder()
+ .name("storage-account-key-secret")
+ .displayName("Storage Account Key Secret Name")
+ .description("The name of the Azure Key Vault secret containing
the Azure Storage account " +
+ " access key. The Controller Service will use this name to
get the value of the secret from " +
+ " Key Vault.")
+ .addValidator(StandardValidators.NON_BLANK_VALIDATOR)
+ .required(false)
+ .sensitive(true)
+ .build();
+
+ public static final PropertyDescriptor ACCOUNT_SAS_TOKEN_SECRET = new
PropertyDescriptor.Builder()
+ .name("-secret")
Review comment:
typo?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]