action conjur_sign { label: "Gets a signed certificate from the configured Certificate Authority service." description: "Gets a signed certificate from the configured Certificate Authority service.\n\nThe request must include a valid Certificate Signing Request, and a desired TTL in ISO 8601 format.\n\n*** IMPORTANT ***\nThis endpoint is part of an early implementation of support for using Conjur as a certificate\nauthority, and is currently available at the Community (or early alpha) level.\nThis endpoint is still subject to breaking changes in the future.\n" provider: conjur method: POST path: "/ca/{account}/{service_id}/sign" encoding: form input: { type: "object" properties: { Accept: { type: "string" } account: { type: "string" description: "Conjur account name" } service_id: { type: "string" } } required: ["account", "service_id"] additionalProperties: false } output: { type: "object" properties: { certificate: { type: "string" } } } }