1.0.0 • Published 4 years ago

@artit91/cf v1.0.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
4 years ago

CloudFormation helper functions

npm

Running deploy

Full parameter list: https://docs.aws.amazon.com/cli/latest/reference/cloudformation/deploy/index.html

deploy({
  region: "eu-west-2",
  stackName: "test",
  templateFile: path.join("test", "templates", "bucket.yaml"),
  capabilities: ["CAPABILITY_IAM"],
  parameters: {
    CustomTag: "test",
    CustomTag2: "test2"
  }
})

Getting outputs

const outputs = await output("test", "eu-west-2");