action conjur_create_host { label: "Creates a Host using the Host Factory." description: "Creates a Host using the Host Factory and returns a JSON description of it.\n\nRequires a host factory token, which can be created using the create tokens API.\nIn practice, this token is usually provided automatically as part of Conjur integration with your\nhost provisioning infrastructure.\n\nNote: If the token was created with a CIDR restriction, you must make this API request from a whitelisted address.\n" provider: conjur method: POST path: "/host_factories/hosts" encoding: form output: { type: "object" description: "Contains information about a created host" required: ["annotations", "api_key", "created_at", "id", "owner", "permissions"] properties: { annotations: { type: "array" items: { type: "string" } } api_key: { type: "string" } created_at: { type: "string" } id: { type: "string" } owner: { type: "string" } permissions: { type: "array" items: { type: "string" } } } } }