action conjur_create_secret { label: "Creates a secret value within the specified variable." description: "Creates a secret value within the specified Secret.\n\n\nNote: Conjur will allow you to add a secret to any resource, but the\nbest practice is to store and retrieve secret data only using Secret resources.\n" provider: conjur method: POST path: "/secrets/{account}/{kind}/{identifier}" encoding: json input: { type: "object" properties: { account: { type: "string" description: "Conjur account name" } expirations: { type: "string" } identifier: { type: "string" description: "Resource identifier. Requires to be encoded when in path.\n\n##### Examples:\n\n- `myapp-01` -> `myapp-01` (unchanged)\n- `alice@devops` -> `alice%40devops`\n- `prod/aws/db-password` -> `prod%2Faws%2Fdb-password`\n- `research+development` -> `research%2Bdevelopment`\n- `sales&marketing` -> `sales%26marketing`\n" } kind: { type: "string" } } required: ["account", "identifier", "kind"] additionalProperties: false } output: { type: "object" additionalProperties: true } }