Metadata-Version: 1.1
Name: cfn-inspect
Version: 0.2.2
Summary: CloudFormation printer and inspector
Home-page: https://github.com/tdi/cfn-inspect
Author: Dariusz Dwornikowski
Author-email: dariusz.dwornikowski@nordcloud.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # cfn-inspect: pretty print and inspect CloudFormation templates
        
        Simple pretty printer for CloudFormation templates, in future it will also provide some validation and deep inspection. 
        
        Support json templates only for now. 
        
        
        # Installation
        
        ```$ pip install cfn-inspect```
        
        # Usage 
        
        ```
        $ cfn-inspect rds.json --verbose
        
        cfn-inspect v0.1
        Inspecting template: templates/rds.json
        Description: RDS-MySQL
        Parameters
          AllocatedStorage (Number)
          DbMasterPassword (String)
          DbName (String)
          ExistingDbSnapshot (String)
          NetworkStack (String)
          Production (String)
        Resources
          DbMysql (AWS::RDS::DBInstance)
          SecurityGroupClientMysql (AWS::EC2::SecurityGroup)
          SecurityGroupDbMysql (AWS::EC2::SecurityGroup)
        Outputs
          ClientSG
          DbHost
            Exported as {'Fn::Sub': '${AWS::StackName}-DbHost'}
          DbMasterUser
            Exported as {'Fn::Sub': '${AWS::StackName}-DbMasterUser'}
          DbMysql
            Exported as {'Fn::Sub': '${AWS::StackName}-DbMysql'}
          DbName
            Exported as {'Fn::Sub': '${AWS::StackName}-DbName'}
          DbPort
            Exported as {'Fn::Sub': '${AWS::StackName}-DbPort'}
        ```
        
        # Author
        Dariusz Dwornikowski
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
