Terrastack CLI
export NODE_PRESERVE_SYMLINKS=1 # make yarn link work properly for components - see: http://www.codetunnel.io/you-can-finally-npm-link-packages-that-contain-peer-dependencies/
$ npm install -g terrastack-cli
$ terrastack COMMAND
running command...
$ terrastack (-v|--version|version)
terrastack-cli/0.3.0 darwin-x64 node-v10.10.0
$ terrastack --help [COMMAND]
USAGE
$ terrastack COMMAND
...
terrastack component
terrastack help [COMMAND]
terrastack stack:apply
terrastack stack:destroy
terrastack stack:info
terrastack stack:plan
Init a new component from a Terraform module
USAGE
$ terrastack component
OPTIONS
-d, --description=description Brief description for package
-n, --name=name (required) name of component
-t, --tag=tag (required) Which tag (version) to set for package
See code: src/commands/component.js
display help for terrastack
USAGE
$ terrastack help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
Apply the stack
USAGE
$ terrastack stack:apply
See code: src/commands/stack/apply.js
Destroy the stack
USAGE
$ terrastack stack:destroy
See code: src/commands/stack/destroy.js
Get info about the stack
USAGE
$ terrastack stack:info
See code: src/commands/stack/info.js
Plan the stack
USAGE
$ terrastack stack:plan
See code: src/commands/stack/plan.js