json.schema.security.secrets.secretsManagerConfiguration.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/security/secrets/secretsManagerConfiguration.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SecretsManagerConfiguration",
"description": "OpenMetadata server configuration for the Secrets Manager feature.",
"type": "object",
"javaType": "org.openmetadata.schema.security.secrets.SecretsManagerConfiguration",
"properties": {
"secretsManager": {
"title": "Secrets Manager Provider",
"description": "OpenMetadata Secrets Manager Provider. Make sure to configure the same secrets manager providers as the ones configured on the OpenMetadata server.",
"$ref": "secretsManagerProvider.json",
"default": "noop"
},
"prefix": {
"title": "Secret ID Prefix",
"description": "Prefix to be added to the secret key ID: `///`",
"type": "string"
},
"tags": {
"title": "Secret Resource Tags",
"description": "Add tags to the created resource, e.g., in AWS. Format is `[key1:value1,key2:value2,...]`",
"type": "array",
"items": {
"type": "string"
},
"default": null
},
"parameters": {
"title": "Parameters",
"description": "Extra parameters used by the Secrets Manager implementation.",
"type": "object",
"additionalProperties": {
".{1,}": {
"type": "string"
}
}
}
},
"additionalProperties": false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy