cfncli


Namecfncli JSON
Version 0.6.3 PyPI version JSON
download
home_pageNone
SummaryCloudFormation CLI Wrapper
upload_time2025-10-20 21:59:54
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords aws cfn cli cloudformation changeset sam serverless
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AWS CloudFormation CLI

<div style="display: flex; align-items: center; gap: 10px;">

<a href="https://htmlpreview.github.io/?https://github.com/andyfase/cfncli/blob/python-coverage-comment-action-data/htmlcov/index.html">
<img height="24" src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/andyfase/cfncli/python-coverage-comment-action-data/endpoint.json&label=Code%20Coverage" alt="Coverage badge">
</a>

<a href="https://cfncli.readthedocs.io/" title="CFN CLI Documentation">
<img height="24" src="https://img.shields.io/badge/Docs-Read%20The%20Docs-blue" alt="Documentation">
</a>

</div>
<br/>

The missing CloudFormation CLI. Reborn!

`cfn-cli` is the CloudFormation CLI that AWS never built. Its use dramatically increases the developer friendliness of using CloudFormation at scale, both within developer environments and CI/CD pipelines.

It's designed to be as light a wrapper around CloudFormation as possible, thus avoiding any kind of lock-in. Its use simplifies stack configuration and deployment while allowing for an easy exit to raw CloudFormation JSON style configuration files if desired.

Features:

* Simple and Intuitive CLI that encapsulates the complexity of CloudFormation operations (Packaging, ChangeSets, Drift, Status etc)
* Useful and colourful stack deployment output with full event tailing
* DRY Configuration of stacks in a single YAML file
* Supports ordered stack operations across AWS accounts and regions
* Automatic packaging of external resources (Lambda Code, Nested Stacks and many more resources)
* Loosely coupled cross-stack parameter reference that work cross-region and cross-account
* Nested ChangeSet support, including full and friendly pretty printing.
* Stack configuration inheritance across stages and blueprints

`cfn-cli` in action:

![demo](docs/docs/assets/demo.gif)

## Compatibility

This tool supports Python 3.10 and above. `cfn-cli` has been tested and validated operational on AWS CloudShell, AWS Cloud 9, AWS Linux 2023 AMIs and within CI/CD pipeline runners operating in GitHub, Gitlab and Azure DevOps.

## License

This tool is distributed under the MIT license. The AWS CLI dependent code is distributed under the Apache 2.0 license - see ext_customizations [README](./cfncli/ext_customizations/README.md) and [LICENCE](./cfncli/ext_customizations/LICENSE.md).


## Install

> [!IMPORTANT] 
> Python 3.10 and above is required to install `cfn-cli`

Install from PyPi

```
pip3 install cfncli
```

## Documentation

See [https://cfncli.readthedocs.io/](https://cfncli.readthedocs.io/) for documentation covering usage of the CLI and its configuration syntax  

## Development

See [DEVELOPMENT.md](./DEVELOPMENT.md) for build instructions and development workflow.

## `cfn-cli` Origin Acknowledgement

This code base was forked from [https://github.com/Kotaimen/awscfncli](https://github.com/Kotaimen/awscfncli) who should be acknowledged as the original creator of `cfn-cli`. The original repo became unsupported and dependencies between it and the native AWS CLI caused install issues and compatibility issues.

I have forked and detached this repo from the original codebase and have spent significant effort in updating dependencies, bringing in modern unit tests, fixing bugs, adding documentation and continue to add new features.

This code base will continue to be maintained separately with feature development that will likely not be paralleled in the original code base. 




            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cfncli",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "aws, cfn, cli, cloudformation, changeset, sam, serverless",
    "author": null,
    "author_email": "\"Fase, Andy\" <andyfase@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "# AWS CloudFormation CLI\n\n<div style=\"display: flex; align-items: center; gap: 10px;\">\n\n<a href=\"https://htmlpreview.github.io/?https://github.com/andyfase/cfncli/blob/python-coverage-comment-action-data/htmlcov/index.html\">\n<img height=\"24\" src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/andyfase/cfncli/python-coverage-comment-action-data/endpoint.json&label=Code%20Coverage\" alt=\"Coverage badge\">\n</a>\n\n<a href=\"https://cfncli.readthedocs.io/\" title=\"CFN CLI Documentation\">\n<img height=\"24\" src=\"https://img.shields.io/badge/Docs-Read%20The%20Docs-blue\" alt=\"Documentation\">\n</a>\n\n</div>\n<br/>\n\nThe missing CloudFormation CLI. Reborn!\n\n`cfn-cli` is the CloudFormation CLI that AWS never built. Its use dramatically increases the developer friendliness of using CloudFormation at scale, both within developer environments and CI/CD pipelines.\n\nIt's designed to be as light a wrapper around CloudFormation as possible, thus avoiding any kind of lock-in. Its use simplifies stack configuration and deployment while allowing for an easy exit to raw CloudFormation JSON style configuration files if desired.\n\nFeatures:\n\n* Simple and Intuitive CLI that encapsulates the complexity of CloudFormation operations (Packaging, ChangeSets, Drift, Status etc)\n* Useful and colourful stack deployment output with full event tailing\n* DRY Configuration of stacks in a single YAML file\n* Supports ordered stack operations across AWS accounts and regions\n* Automatic packaging of external resources (Lambda Code, Nested Stacks and many more resources)\n* Loosely coupled cross-stack parameter reference that work cross-region and cross-account\n* Nested ChangeSet support, including full and friendly pretty printing.\n* Stack configuration inheritance across stages and blueprints\n\n`cfn-cli` in action:\n\n![demo](docs/docs/assets/demo.gif)\n\n## Compatibility\n\nThis tool supports Python 3.10 and above. `cfn-cli` has been tested and validated operational on AWS CloudShell, AWS Cloud 9, AWS Linux 2023 AMIs and within CI/CD pipeline runners operating in GitHub, Gitlab and Azure DevOps.\n\n## License\n\nThis tool is distributed under the MIT license. The AWS CLI dependent code is distributed under the Apache 2.0 license - see ext_customizations [README](./cfncli/ext_customizations/README.md) and [LICENCE](./cfncli/ext_customizations/LICENSE.md).\n\n\n## Install\n\n> [!IMPORTANT] \n> Python 3.10 and above is required to install `cfn-cli`\n\nInstall from PyPi\n\n```\npip3 install cfncli\n```\n\n## Documentation\n\nSee [https://cfncli.readthedocs.io/](https://cfncli.readthedocs.io/) for documentation covering usage of the CLI and its configuration syntax  \n\n## Development\n\nSee [DEVELOPMENT.md](./DEVELOPMENT.md) for build instructions and development workflow.\n\n## `cfn-cli` Origin Acknowledgement\n\nThis code base was forked from [https://github.com/Kotaimen/awscfncli](https://github.com/Kotaimen/awscfncli) who should be acknowledged as the original creator of `cfn-cli`. The original repo became unsupported and dependencies between it and the native AWS CLI caused install issues and compatibility issues.\n\nI have forked and detached this repo from the original codebase and have spent significant effort in updating dependencies, bringing in modern unit tests, fixing bugs, adding documentation and continue to add new features.\n\nThis code base will continue to be maintained separately with feature development that will likely not be paralleled in the original code base. \n\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "CloudFormation CLI Wrapper",
    "version": "0.6.3",
    "project_urls": {
        "Homepage": "https://github.com/andyfase/cfncli"
    },
    "split_keywords": [
        "aws",
        " cfn",
        " cli",
        " cloudformation",
        " changeset",
        " sam",
        " serverless"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f80e28baec02977624fd14743376962e93d31f735b1725909825496e5b56eef8",
                "md5": "e7f29232d2319f55b7ca6b9cc3dabe88",
                "sha256": "0cd8ca952b4dcaf25588eef31793974b87369f3027256a9c217a60d76095f877"
            },
            "downloads": -1,
            "filename": "cfncli-0.6.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e7f29232d2319f55b7ca6b9cc3dabe88",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 81353,
            "upload_time": "2025-10-20T21:59:54",
            "upload_time_iso_8601": "2025-10-20T21:59:54.777106Z",
            "url": "https://files.pythonhosted.org/packages/f8/0e/28baec02977624fd14743376962e93d31f735b1725909825496e5b56eef8/cfncli-0.6.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-20 21:59:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "andyfase",
    "github_project": "cfncli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cfncli"
}
        
Elapsed time: 0.50866s