Metadata-Version: 2.1
Name: json2tfvars
Version: 0.0.1
Summary: simple tfvars (HCL) converter
Home-page: https://github.com/sk4zuzu/json2tfvars
Author: Michal Opala
Author-email: sk4zuzu@gmail.com
License: UNKNOWN
Description: 
        ### About
        
        simple tfvars (HCL) converter
        
        ### Usage
        
        ```
        usage: json2tfvars [-h] [--reverse] [--indent N] [FILE [FILE ...]]
        
        positional arguments:
          FILE
        
        optional arguments:
          -h, --help  show this help message and exit
          --reverse   expect tfvars (HCL) input
          --indent N  adjust identation levels
        ```
        
        ```bash
        $ json2tfvars <<< '{"a":"b"}' | json2tfvars --reverse | jq -r '. + {"c":"d"}' | json2tfvars
        
        a = "b"
        
        c = "d"
        
        ```
        
        [//]: # ( vim:set ts=2 sw=2 et syn=markdown: )
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
