github.com/replicatedhq/ship@v0.55.0/integration/base/terraform/expected/.ship/release.yml (about)

     1  assets:
     2    v1:
     3      - terraform:
     4          dest: ./terraform/random.tf
     5          inline: |
     6            resource "local_file" "foo" {
     7              content     = "{{repl ConfigOption "id_length" }}"
     8              filename = "/tmp/foo.bar"
     9            }
    10      - terraform:
    11          inline: |
    12            resource "local_file" "foo" {
    13              content     = "{{repl ConfigOption "id_length" }}"
    14              filename = "/tmp/foo.bar"
    15            }
    16  
    17  config:
    18    v1:
    19      - name: id
    20        items:
    21           - name: id_length
    22             title: ID Length
    23             type: text
    24             required: true
    25             default: 8
    26             help_text: bigger numbers make longer ids
    27  
    28  lifecycle:
    29    v1:
    30      - message:
    31          contents: "hi"
    32      - render: {}
    33      - terraform:
    34          path: terraform/
    35      - message:
    36          contents: "bye"