diff --git a/docs/blueprint-designer-guide/blueprints/blueprints-yaml-structure.md b/docs/blueprint-designer-guide/blueprints/blueprints-yaml-structure.md index eb1ec0029..c6638ea56 100644 --- a/docs/blueprint-designer-guide/blueprints/blueprints-yaml-structure.md +++ b/docs/blueprint-designer-guide/blueprints/blueprints-yaml-structure.md @@ -772,13 +772,23 @@ grains: ... #### `self-service` -Controls whether the blueprint is available for self-service deployment by end users. When set to `true`, users can deploy environments from this blueprint directly. When set to `false`, the blueprint may require additional approval or administrative intervention. +Controls whether the blueprint is available for self-service deployment by end users. When set to `true`, the blueprint will be available in the self-service catalog. When set to `false`, the blueprint may will only be available from the "Automation Inventory" page's "Blueprints" tab. + ```yaml metadata: self-service: true # Default: false ``` +Additionally, a list of spaces where the Blueprint should be published to the self-service catalog can be provided as a YAML list of Space names. + +```yaml +metadata: + self-service: + - Space A + - Space B +``` + #### `display-name` Specifies a user-friendly display name for the blueprint that will be shown in the Torque UI catalog. This allows you to provide a more descriptive name than the filename or internal identifier.