| api_url | fleetd API URL | yes | — |
| api_key | fleetd API key for authentication | yes | — |
| name | Deployment name | yes | — |
| description | Deployment description | no | Deployment from GitHub Actions |
| type | Deployment type (binary, script, container, config, firmware, package, bundle) | yes | binary |
| artifact_url | URL to download the artifact | no | — |
| artifact_path | Local path to the artifact | no | — |
| version | Version of the deployment | no | ${{ github.sha }} |
| checksum | Checksum of the artifact | no | — |
| script_content | Inline script content (for script deployments) | no | — |
| interpreter | Script interpreter (e.g., /bin/bash, /usr/bin/python3) | no | /bin/bash |
| container_image | Container image (for container deployments) | no | — |
| container_name | Container name to update | no | — |
| target_devices | Comma-separated device IDs | no | — |
| target_groups | Comma-separated group IDs | no | — |
| target_labels | Label selector (JSON format) | no | — |
| target_query | Custom query selector | no | — |
| target_filters | Target filters (JSON format) | no | — |
| max_devices | Maximum number of devices to target | no | — |
| strategy | Deployment strategy (immediate, rolling, canary, blue-green) | no | rolling |
| batch_size | Number of devices per batch | no | 10 |
| pause_seconds | Pause between batches in seconds | no | 60 |
| canary_size | Size of canary deployment | no | 1 |
| health_check_enabled | Enable health checks | no | true |
| health_check_timeout | Health check timeout in seconds | no | 60 |
| auto_rollback | Enable automatic rollback on failure | no | true |
| failure_threshold | Failure percentage to trigger rollback | no | 0.1 |
| webhook_urls | Comma-separated webhook URLs for notifications | no | — |
| auto_start | Start deployment immediately | no | true |
| wait_for_completion | Wait for deployment to complete | no | true |
| timeout_minutes | Deployment timeout in minutes | no | 60 |
| environment | Target environment (dev, staging, production) | no | production |