forked from radius-project/radius
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for secret store reference in Dapr components (radius-project…
…#7823) # Description Hey, This PR adds support for building Dapr components with an optional reference to a Dapr secret store. The new property is named _secretStoreComponentName_. This name is totally arbitrary but was chosen to try to be as clear as possible. A secret reference can be created using a _secretKeyRef_ object, following the same [naming convention as Dapr](https://docs.dapr.io/operations/components/component-secrets/). Example : ```yaml resource stateStore 'Applications.Dapr/stateStores@2023-10-01-preview' = { name: 'statestore' properties: { environment: environment application: application resourceProvisioning: 'manual' type: 'state.redis' version: 'v1' metadata: { redisHost: { secretKeyRef: { name: 'redisHost' key: 'redisHost' } } redisPassword: '' } secretStoreComponentName: daprSecretStore.name } } ``` ## Type of change - This pull request adds or changes features of Radius and has an approved issue (issue link required). Fixes: radius-project#7704 --------- Signed-off-by: SoTrx <11771975+SoTrx@users.noreply.github.com>
- Loading branch information
Showing
47 changed files
with
1,731 additions
and
326 deletions.
There are no files selected for viewing
219 changes: 155 additions & 64 deletions
219
...bicep-types-radius/generated/applications/applications.dapr/2023-10-01-preview/types.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
Oops, something went wrong.