Skip to content

Add option to supply a parameters file in yaml, json or dot-env #34

@samjarrett

Description

@samjarrett

in yaml/json, it should accept both "AWS format" and simplified - e.g.

AWS format:

- ParameterKey: keyname
  ParameterValue: value
- ParameterKey: anotherkeyname
  ParameterValue: secondvalue
[
  {
    "ParameterKey": "keyname",
    "ParameterValue": "value"
  },
  {
    "ParameterKey": "anotherkeyname",
    "ParameterValue": "secondvalue"
  }
]

Simplified:

keyname: value
anotherkeyname: secondvalue
{
  "keyname": "value",
  "anotherkeyname": "secondvalue"
}

dot-env would need to be only in simplified form:

keyname=value
anotherkeyname=secondvalue

it should check the template for what parameters are present, and only pass in ones that are in the template, so it doesn't error for "too many parameters"

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions