--parameters <name>:<value>
option is removed from CLI. Usename=value
instead. For example:cfer generate stack.rb parameter_name=parameter_value
- Adds support for Pre-build and Post-build hooks for resources and stacks.
- Adds
json-to-cfer
script to automatically convert json templates to Cfer DSL code. - Adds support for directly converging JSON files.
- Replaces Thor with Cri as a CLI option parser.
- Relaxes some version constraints to make it easier to integrate with older Rails projects.
- Pulled stack validation out into an extension using post-build hooks.
- Adds some extension methods to improve usability of certain resources.
- Namespace cleanup.
- Supports reading ruby template from stdin by specifying the filename
-
- Adds exponential backoff to
tail
command. --on-failure
flag is now case insensitive.- Removes
--pretty-print
as a global option and adds--minified
to thegenerate
command. - Various test improvements.
- Fixes "Stack does not exist" error being reported when stack creation fails and
--on-failure=DELETE
is specified.
- Templates now uploaded to S3 in all cases where they should be.
- Fixes extensions (should be
class_eval
, notinstance_eval
)
- Provisioning is removed from Cfer core and moved to cfer-provisioning
- Adds support for assume-role authentication with MFA (see: https://docs.aws.amazon.com/cli/latest/userguide/cli-roles.html)
- Adds support for yml-format parameter files with environment-specific sections.
- Adds a DSL for IAM policies.
- Adds
cfer estimate
command to estimate the cost of a template using the AWS CloudFormation cost estimation API. - Enhancements to chef provisioner to allow for references in chef attributes. (Thanks to @eropple)
- Adds continue/rollback/quit selection when
^C
is caught during a converge. - Stores Cfer version and Git repo information in the Repo metadata.
- Added support for uploading templates to S3 with the
--s3-path
and--force-s3
options. - Added new way of extending resources, making plugins easier.
- Added support for CloudFormation Change Sets via the
--change
option.
parameters
hash now includes parameters that are set on the existing stack, but not passed in via CLI during a stack update.parameters
hash now includes defaults for parameters that were not passed on the CLI during a stack creation.- Adds a
lookup_output
function, for looking up outputs of stacks in the same account+region. (See #8) - Adds provisioning for cfn-init and chef-solo, including resource signaling.
- Adds support for stack policies.
- Cfer no longer validates parameters itself. CloudFormation will throw an error if something is wrong.
- Adds release notes to the README.
- Removes automatic parameter mapping in favor of an explicit function available to resources. (Fixes Issue #8)
- No more double-printing the stack summary when converging a stack with tailing enabled.
- Update demo to only use 2 AZs, since us-west-1 only has two.
AllowedValues
attribute on parameters is now an array, not a CSV string. (Thanks to @rlister)
- Adds support for including other files via
include_template
function. - Adds basic Dockerfile