# Configuration template for Certificate Bundle (Chain) creation
# Usage: igcv3 bundle leaf.crt --config chain.conf.yml

# List of intermediate certificates (order matters: from Leaf to Root)
# Usually, servers expect: Leaf -> Intermediate 1 -> Intermediate 2 -> Root
intermediate:
  - ./certs/intermediate-ca.crt
  # - ./certs/another-intermediate.crt

# Root certificate (Optional)
# Some servers (like Nginx) don't strictly need the root in the bundle if it's in the system store,
# but it's often safer to include it for full compatibility or client distribution.
root: ./certs/root-ca.crt
