AWS SSM Parameter Store

Detailed information on the AWS SSM Parameter Store - secret store component

配置

To setup AWS SSM Parameter Store secret store create a component of type secretstores.aws.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.

See Authenticating to AWS for information about authentication-related attributes.

apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: awsparameterstore
  namespace: default
spec:
  type: secretstores.aws.parameterstore
  version: v1
  metadata:
  - name: region
    value: "[aws_region]"
  - name: accessKey
    value: "[aws_access_key]"
  - name: secretKey
    value: "[aws_secret_key]"
  - name: sessionToken
    value: "[aws_session_token]"

元数据字段规范

字段必填详情Example
regionYThe specific AWS region the AWS SSM Parameter Store instance is deployed in"us-east-1"
accessKeyY要访问此资源的 AWS 访问密钥"key"
secretKeyY要访问此资源的 AWS 密钥访问 Key"secretAccessKey"
sessionTokenN要使用的 AWS 会话令牌"sessionToken"

Create an AWS SSM Parameter Store instance

Setup AWS SSM Parameter Store using the AWS documentation: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html.

相关链接