Metadata-Version: 2.1
Name: cfn-sync
Version: 0.0.10
Summary: Deploy CloudFormation stacks synchronously and watch the events
Home-page: https://github.com/samjarrett/cfn-sync
Author: Sam Jarrett
Author-email: sam@samjarrett.com.au
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
License-File: LICENSE

CFN-Sync
========

Deploy CloudFormation stacks synchronously using syntax similar to `aws cloudformation deploy`, and watch the events
scroll until the create or update completes.

Installation
------------

Install using pip/pypi:

::

    pip install cfn-sync


Usage
-----

Deploying (creating or updating) a stack:

::

    cfn-sync deploy \
      --stack-name <STACK_NAME> \
      --template-file <FILE_PATH> \
      [--parameter-overrides <KEY=VALUE> [<KEY=VALUE>...]] \
      [--tags <KEY=VALUE> [<KEY=VALUE>...]] \
      [--capabilities <VALUE> [<VALUE>...]]


Deleting a stack:

::

    cfn-sync delete --stack-name <STACK_NAME>


