action conjur_get_secrets { label: "Fetch multiple secrets" description: "Fetches multiple secret values in one invocation. It’s faster to fetch secrets in batches than to fetch them one at a time." provider: conjur method: GET path: "/secrets" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "string" enum: ["base64"] } variable_ids: { type: "string" description: "Comma-delimited, URL-encoded resource identifiers.\n\n##### Resources IDs encoding:\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" } } required: ["variable_ids"] additionalProperties: false } output: { type: "object" } }