-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AWS SSM Parameter SecretStore] Adds Component Metadata Schema (#2938)
Signed-off-by: Roberto J Rojas <[email protected]> Signed-off-by: Roberto Rojas <[email protected]>
- Loading branch information
1 parent
25656c1
commit c2dbb03
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# yaml-language-server: $schema=../../../component-metadata-schema.json | ||
schemaVersion: v1 | ||
type: secretstores | ||
name: aws.parameterstore | ||
version: v1 | ||
status: alpha | ||
title: "AWS SSM Parameter Store" | ||
urls: | ||
- title: Reference | ||
url: https://docs.dapr.io/reference/components-reference/supported-secret-stores/aws-parameter-store/ | ||
builtinAuthenticationProfiles: | ||
- name: "aws" | ||
metadata: | ||
- name: region | ||
required: true | ||
description: | | ||
The specific AWS region the AWS SSM Parameter Store instance is deployed in. | ||
example: '"us-east-1"' | ||
type: string | ||
- name: sessionToken | ||
required: false | ||
sensitive: true | ||
description: | | ||
AWS session token to use. A session token is only required if you are using | ||
temporary security credentials. | ||
example: '"TOKEN"' | ||
type: string | ||
- name: prefix | ||
required: false | ||
description: | | ||
The SSM Parameter Store prefix to be specified. If specified, it will be | ||
used as the 'BeginsWith' as part of the 'ParameterStringFilter'. | ||
example: '"myprefix"' | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters