github.com/chenbh/concourse/v6@v6.4.2/fly/integration/fixtures/var_sources_pipeline.yml (about)

     1  ---
     2  var_sources:
     3  - name: some-vault
     4    type: vault
     5    config:
     6      url: http://vault
     7      path_prefix: some-prefix
     8      client_token: some-token
     9  
    10  - name: vs-dummy
    11    type: dummy
    12    config:
    13      vars:
    14        k1: v1
    15  
    16  resources:
    17  - name: some-resource
    18    type: some-type
    19    source:
    20      private_key: ((some-vault:large-string-param))
    21      config-a: ((some-vault:param-a))
    22      config-b: ((vs-dummy:param-b))
    23  
    24  jobs:
    25  - name: some-job
    26    plan:
    27    - get: some-resource