AlibabaCloud OOS Parameter Store

Detailed information on the AlibabaCloud OOS Parameter Store - secret store component

Component format

To setup AlibabaCloud OOS Parameter Store secret store create a component of type secretstores.alicloud.parameterstore. See this guide on how to create and apply a secretstore configuration. See this guide on referencing secrets to retrieve and use the secret with Dapr components.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: alibabacloudparameterstore
  5. namespace: default
  6. spec:
  7. type: secretstores.alicloud.parameterstore
  8. version: v1
  9. metadata:
  10. - name: regionId
  11. value: "[alicloud_region_id]"
  12. - name: accessKeyId
  13. value: "[alicloud_access_key_id]"
  14. - name: accessKeySecret
  15. value: "[alicloud_access_key_secret]"
  16. - name: securityToken
  17. value: "[alicloud_security_token]"

Warning

The above example uses secrets as plain strings. It is recommended to use a local secret store such as Kubernetes secret store or a local file to bootstrap secure key storage.

Spec metadata fields

FieldRequiredDetailsExample
regionIdYThe specific region the AlibabaCloud OOS Parameter Store instance is deployed in“cn-hangzhou”
accessKeyIdYThe AlibabaCloud Access Key ID to access this resource“accessKeyId”
accessKeySecretYThe AlibabaCloud Access Key Secret to access this resource“accessKeySecret”
securityTokenNThe AlibabaCloud Security Token to use“securityToken”

Create an AlibabaCloud OOS Parameter Store instance

Setup AlibabaCloud OOS Parameter Store using the AlibabaCloud documentation: https://www.alibabacloud.com/help/en/doc-detail/186828.html.

Last modified February 18, 2022: Update setup-jetstream.md (#2200) (428d8c2)