SecretReference

Reference to a secret in a secret store

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
source string The ID of an Applications.Core/SecretStore resource
key string The key for the secret in the secret store
View JSON Schema on GitHub

JSON Schema

application-research-secretreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretReference",
  "title": "SecretReference",
  "type": "object",
  "description": "Reference to a secret in a secret store",
  "properties": {
    "source": {
      "type": "string",
      "description": "The ID of an Applications.Core/SecretStore resource"
    },
    "key": {
      "type": "string",
      "description": "The key for the secret in the secret store"
    }
  },
  "required": [
    "source",
    "key"
  ]
}