Catalog
Browse the resource kinds available for Platform as Code and learn how to define them in YAML.
1
2
3
4
Resource Categories
Explore resources by category
Organization ›
Project ›
Workspace ›
Environment ›
Stack ›
Credentials ›
Policy ›
Runner ›
Integration ›
... and more
Resource Schema Example
Resource Kind: Environment
Schema Example Manifest Field Reference
apiVersion: platform.axio.io/v1
kind: Environment
metadata:
name: production
labels:
team: platform
spec:
displayName: Production Environment
workspace: production-ws
description: Production deployment environment
sensitive: true
tags:
- productionSchema Fields (Environment)
| Field | Type | Required | Description |
|---|---|---|---|
| metadata.name | string | Yes | Unique name of the environment (lowercase, hyphens allowed) |
| spec.displayName | string | Yes | Display name for the environment |
| spec.workspace | string | Yes | Name of the workspace this environment belongs to |
| spec.description | string | No | Description of the environment |
| spec.sensitive | boolean | No | Marks environment as sensitive (default: false) |
| spec.tags | array(string) | No | List of tags for classification and filtering |