-
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.
Merge branch 'master' into pubsub-pulsar-authentication-oidc-init
- Loading branch information
Showing
5 changed files
with
128 additions
and
6 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
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
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
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,59 @@ | ||
# yaml-language-server: $schema=../../../component-metadata-schema.json | ||
schemaVersion: v1 | ||
type: state | ||
name: aws.dynamodb | ||
version: v1 | ||
status: stable | ||
title: "AWS DynamoDB" | ||
urls: | ||
- title: Reference | ||
url: https://docs.dapr.io/reference/components-reference/supported-state-stores/setup-dynamodb/ | ||
capabilities: | ||
- crud | ||
- transactional | ||
- etag | ||
- ttl | ||
- actorStateStore | ||
builtinAuthenticationProfiles: | ||
- name: "aws" | ||
metadata: | ||
- name: table | ||
required: true | ||
description: | | ||
The name of the DynamoDB table to use. | ||
example: '"Contracts"' | ||
type: string | ||
- name: region | ||
required: false | ||
description: | | ||
The AWS region to use. Ensure that DynamoDB is available in that region. | ||
See the `Amazon DynamoDB endpoints and quotas` documentation. | ||
url: | ||
title: Amazon DynamoDB endpoints and quotas | ||
url: https://docs.aws.amazon.com/general/latest/gr/ddb.html | ||
example: '"us-east-1"' | ||
type: string | ||
- name: endpoint | ||
required: false | ||
description: | | ||
AWS endpoint for the component to use. Only used for local development. | ||
The endpoint is not necessary when running against production AWS. | ||
example: '"http://localhost:4566"' | ||
type: string | ||
- name: ttlAttributeName | ||
required: false | ||
description: | | ||
The table attribute name which should be used for TTL. | ||
example: '"expiresAt"' | ||
type: string | ||
- name: partitionKey | ||
required: false | ||
description: | | ||
The table primary key or partition key attribute name. | ||
This field is used to replace the default primary key attribute name "key". | ||
url: | ||
title: More details | ||
url: https://docs.dapr.io/reference/components-reference/supported-state-stores/setup-dynamodb/#partition-keys | ||
example: '"ContractID"' | ||
type: string | ||
|