Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading