Skip to content

Feature: Support complex values #205

Open
@jkroepke

Description

Current Behavior

When I have the following template:

apiVersion: v1
kind: Secret
metadata:
  name: test
stringData: ref+awsssm://test

With a value in Parameter Store in YAML format:

value1: secret
value2: secret

I get the following rendered secret:

apiVersion: v1
kind: Secret
metadata:
  name: test
stringData: |-
  value1: secret
  value2: secret

I would like to give vals an hint that the value should be not handle as string, instead it just be insert as object into the existing yaml structure.

for example:

apiVersion: v1
kind: Secret
metadata:
  name: test
stringData:
  value1: secret
  value2: secret

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions