stackctl - configuration file for Stackctl
.stackctl/config.yaml
.stackctl/config.yml
.stackctl.yaml
.stackctl.yml
The first path to exist will be used.
The configuration file is a YAML object with the following keys:
required_version :: Text
defaults.parameters :: Object|List<Object>.Parameters
key of a stack specification (see stackctl(1)).defaults.tags :: Object|List<Object>.Tags key of a
stack specification (see stackctl(1)).All keys are optional.
required_version: "=~ 1.7.1"    # means >= 1.7.1.0 and < 1.7.2.0
defaults:
  parameters:                   # list-of-object syntax
    - Key: Foo
      Value: Bar
    - Key: Baz
      Value: Bat
  tags:                         # object syntax (recommended)
    Foo: Bar
    Baz: Bat