get.porter.sh/porter@v1.3.0/pkg/runtime/testdata/param-test-in-block.yaml (about)

     1  schemaVersion: 1.0.0
     2  name: porter-hello
     3  version: 0.1.0
     4  description: "An example Porter configuration"
     5  registry: jeremyrickard
     6  
     7  mixins:
     8    - exec
     9  
    10  parameters:
    11    - name: command 
    12      type: string
    13      default: "echo Hello World"
    14  
    15  install:
    16    - exec:
    17        description: "Install Hello World"
    18        command: "${ bundle.parameters.command }"
    19  
    20  uninstall:
    21    - exec:
    22        description: "Uninstall Hello World"
    23        command: bash
    24        flags:
    25          c: echo Goodbye World