🤹🎬 VCS environments in workflows

We’re excited to introduce our latest feature: support for a new workflow environment format! This update eliminates the need to create templates as prerequisites. Now, all fields can be defined directly within the workflow itself, similar to env0 VCS environments. Experience a more efficient workflow process with env0's latest enhancement. #env0 #workflow

New vcs format

The new format addsvcs (which conflict with the existing templateName) which allows the customer fewer prerequisites work by inserting all the required information directly in the workflow file itself

environments:
  vpc:
    name: 'VPC and Network'
    templateName: 'VPC'
  db:
    name: DB
    templateName: 'DB'
    needs:
      - vpc
  eks:
    name: EKS
    vcs:
      type: 'terraform'
      terraformVersion: 'latest'
      repository: 'https://github.com/env0/templates'
      path: 'aws/hello-world'
      githubInstallationId: 123456789.00
    needs:
      - vpc

read in depth in our docs