github.com/lyraproj/hiera@v1.0.0-rc4/hiera/testdata/sample_data.yaml (about)

     1  first: value of first
     2  array:
     3    - one
     4    - two
     5    - three
     6  hash:
     7    int: 1
     8    string: one
     9    array:
    10      - two
    11      - "%{hiera('first')}"
    12  second: "includes '%{lookup('first')}'"
    13  ipAlias: "%{alias('array')}"
    14  ipBadAlias: "x %{alias('array')}"
    15  ipScope: "hello %{world}"
    16  ipScope2: "hello %{scope('world')}"
    17  ipLiteral: "some %{literal('literal')} text"
    18  ipBad: "hello %{bad('world')}"
    19  empty1: "Start%{}End"
    20  empty2: "Start%{''}End"
    21  empty3: 'Start%{""}End'
    22  empty4: "Start%{::}End"
    23  empty5: "Start%{'::'}End"
    24  empty6: 'Start%{"::"}End'