conjure list
List available templates and bundles.
The conjure list command displays available templates and bundles in your configured directories.
conjure list [subcommand] [flags]
List both templates and bundles:
conjure list
Output:
=== Templates ===
Available Templates:
deployment
Description: Kubernetes Deployment manifest
Type: kubernetes
Latest: 1.0.0
docker-compose
Description: Docker Compose configuration
Type: docker
Latest: 1.0.0
Total: 2 templates
=== Bundles ===
Available Bundles:
web-app
Description: Complete web application deployment
Type: kubernetes
Latest: 1.2.0
Total: 1 bundle
List only templates:
conjure list templates
Output:
Available Templates:
deployment
Description: Kubernetes Deployment manifest
Type: kubernetes
Latest: 1.0.0
docker-compose
Description: Docker Compose configuration
Type: docker
Latest: 1.0.0
vpc
Description: Terraform VPC configuration
Type: terraform
Latest: 3.2.1
Total: 3 templates
List only bundles:
conjure list bundles
Output:
Available Bundles:
web-app
Description: Complete web application deployment
Type: kubernetes
Latest: 1.2.0
aws-infrastructure
Description: AWS VPC and networking setup
Type: terraform
Latest: 2.1.0
Total: 2 bundles
Show all available versions for each template or bundle.
conjure list templates --versions
Output:
Available Templates:
deployment
Description: Kubernetes Deployment manifest
Type: kubernetes
Latest: 2.0.0
All Versions: 1.0.0, 1.5.1, 2.0.0
service
Description: Kubernetes Service manifest
Type: kubernetes
Latest: 2.1.0
All Versions: 1.0.0, 2.0.0, 2.1.0
Total: 2 templates
conjure list bundles --versions
Output:
Available Bundles:
web-app
Description: Complete web application deployment
Type: kubernetes
Latest: 1.2.0
All Versions: 1.0.0, 1.1.0, 1.2.0
Total: 1 bundle
Filter results by type.
For templates - Filter by template type:
conjure list templates -t yaml
Output:
Available Templates (type: yaml):
deployment
Description: Kubernetes Deployment manifest
Type: yaml
Latest: 1.0.0
service
Description: Kubernetes Service manifest
Type: yaml
Latest: 2.1.0
Total: 2 templates
conjure list templates -t tf
Output:
Available Templates (type: tf):
subnet
Description: AWS Subnet configuration
Type: tf
Latest: 1.0.0
vpc
Description: AWS VPC configuration
Type: tf
Latest: 3.2.1
Total: 2 templates
Common template types:
yamltfjsontxt
Note
Template types are freeform strings defined in template metadata (
template_typefield). There is no validation restricting types to this list.
For bundles - Filter by bundle type:
conjure list bundles -t kubernetes
Output:
Available Bundles (type: kubernetes):
microservices
Description: Microservices platform with API gateway
Type: kubernetes
Latest: 2.0.1
web-app
Description: Complete web application deployment
Type: kubernetes
Latest: 1.2.0
Total: 2 bundles
conjure list bundles -t terraform
Output:
Available Bundles (type: terraform):
aws-infrastructure
Description: AWS VPC and networking
Type: terraform
Latest: 2.1.0
Total: 1 bundle
Common bundle types:
kubernetesterraformdocker
Note
Bundle types are freeform strings defined in bundle metadata (
bundle_typefield). There is no validation restricting types to this list.
conjure list
Shows all templates and bundles.
conjure list templates --versions
Shows all available versions for each template.
conjure list templates -t yaml
Lists all YAML templates (typically Kubernetes manifests).
conjure list templates -t tf
Lists all Terraform templates.
conjure list bundles -t kubernetes
Lists all Kubernetes bundles.
conjure list bundles -t terraform
Lists all Terraform bundles.