get.porter.sh/porter@v1.3.0/pkg/exec/testdata/install-input.yaml (about)

     1  install:
     2  - exec:
     3      description: "Install a VM and collect its ID"
     4      command: gcloud
     5      arguments:
     6        - compute
     7        - instances
     8        - create
     9      flags:
    10        project: porterci
    11        zone: us-central1-a
    12        machine-type: f1-micro
    13      envs:
    14        SECRET: super-secret
    15      ignoreError:
    16        output:
    17          contains: ["already exists"]
    18      outputs:
    19        - name: vms
    20          jsonPath: "$[*].id"