-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport docs to config schemas (#369)
* Backport docs to config schemas * Bump version
- Loading branch information
Showing
9 changed files
with
271 additions
and
109 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"$id": "state_store_config.schema.json", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"description": "Configure access to an Azure KeyVault instance. If this is configured, you can use the `!keyvault` tag on entries to dynamically replace values with secrets from KeyVault when the configuration is loaded. For example: `secret: !keyvault my-secret`.", | ||
"properties": { | ||
"keyvault-name": { | ||
"type": "string", | ||
"description": "Enter the name of the Azure KeyVault to use.", | ||
"examples": [ | ||
"my-keyvault" | ||
] | ||
}, | ||
"authentication-method": { | ||
"type": "string", | ||
"description": "Method used to authenticate with KeyVault. If this is set to `client-secret`, both `client-id` and `secret` are required." | ||
}, | ||
"tenant-id": { | ||
"type": "string", | ||
"description": "Enter the Azure tenant containing the KeyVault." | ||
}, | ||
"client-id": { | ||
"type": "string", | ||
"description": "Client ID of the service principal used to access the KeyVault." | ||
}, | ||
"secret": { | ||
"type": "string", | ||
"description": "Client secret for the service principal used to access the KeyVault." | ||
} | ||
}, | ||
"required": [ | ||
"tenant-id", | ||
"authentication-method" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.18.1 | ||
1.18.2 |