action circleci_post_project_username_project_ssh_key { label: "post_project_username_project_ssh_key" description: "Create an ssh key used to access external systems that require SSH key-based authentication\n" provider: circleci method: POST path: "/project/{username}/{project}/ssh-key" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" enum: ["application/json"] } hostname: { type: "string" } private_key: { type: "string" } } required: ["Content-Type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }