Skip to main content

No project description provided

Project description

PyPI version

Code Issues

codecov

Build Status

cfnjsontoyaml

Convert JSON CloudFormation templates to the new YAML syntax. This includes converting all Fn::* and Ref JSON functions to !* yaml node type functions.

In addition, cfnjsontoyaml tries to make a best guess at when Fn::Join functions should automatically be converted to !Sub.

Convert Long JSON to compact YAML

This utility not only converts from JSON to yaml, it will use the new short yaml syntax, and attempt to convert Fn::Join to !Sub, resulting in shorter, more compact syntax.

For example, and IAM role can be converted from 127 lines of JSON cloudformation to 30 lines of yaml.

docs/images/diagram.png

docs/images/diagram.png

Usage

cfn-json-to-yaml reads either from standard in, or takes the first argument as the template to ingest and prints the yaml converted template to stdout.

$ pip install cfnjsontoyaml
$ cat my_template.json | cfn-json-to-yaml

Examples

APIGateway Method with lambda proxy

In some cases, we can halve the number of lines, while still maintaining readability. Here, we convert 48 lines of JSON to 19 lines of YAML. #### JSON

{
  "Resources": {
    "MappingReferenceMethod": {
      "Type": "AWS::ApiGateway::Method",
      "DependsOn": [
        "LambdaInvokePermissionMappingReference"
      ],
      "Properties": {
        "RestApiId": {
          "Ref": "RestApi"
        },
        "ResourceId": {
          "Ref": "MappingReferenceResource"
        },
        "HttpMethod": "POST",
        "AuthorizationType": "NONE",
        "ApiKeyRequired": true,
        "RequestParameters": {
          "method.request.header.x-api-key": true
        },
        "Integration": {
          "Type": "AWS_PROXY",
          "Uri": {
            "Fn::Join": [
              "",
              [
                "arn:aws:apigateway:",
                {
                  "Ref": "AWS::Region"
                },
                ":lambda:path/2015-03-31/functions/",
                {
                  "Fn::GetAtt": [
                    "LambdaFunctionMappingReference",
                    "Arn"
                  ]
                },
                "/invocations"
              ]
            ]
          },
          "IntegrationHttpMethod": "POST",
          "PassthroughBehavior": "when_no_templates"
        }
      }
    }
  }
}

YAML

---
Resources:
  MappingReferenceMethod:
    Type: AWS::ApiGateway::Method
    Properties:
      ApiKeyRequired: true
      AuthorizationType: NONE
      HttpMethod: POST
      Integration:
        IntegrationHttpMethod: POST
        PassthroughBehavior: when_no_templates
        Type: AWS_PROXY
        Uri: !Sub "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${LambdaFunctionMappingReference.Arn}/invocations"
      RequestParameters:
        method.request.header.x-api-key: true
      ResourceId: !Ref "MappingReferenceResource"
      RestApiId: !Ref "RestApi"
    DependsOn:
    - LambdaInvokePermissionMappingReference

Problems

There are a wide range of combinations for functions in cloudformation. If you come across a template which does not render correctly, please try and isolate the fragment of json which is causing issues, and create an issue in github .

If you’d like to be a bit more helpful, you can fork the repository, create a branch, and add a json/yaml snippet to https://github.com/drewsonne/cfn-json-to-yaml/tree/master/tests/resources/fragments with the next sequential number. The smaller the json/yaml snippet you can provide the quicker I can fix it. :-)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cfnjsontoyaml-1.0.5.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

cfnjsontoyaml-1.0.5-py2.py3-none-any.whl (16.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file cfnjsontoyaml-1.0.5.tar.gz.

File metadata

File hashes

Hashes for cfnjsontoyaml-1.0.5.tar.gz
Algorithm Hash digest
SHA256 ad2c67f196968f010eb065986c07b155611339e40b03f41d90a22243e1b8330b
MD5 d4f5e417ce732d1360dc1e29c9e3441e
BLAKE2b-256 89b1d0fc3a92f86eb91c18b42be95c9036ac1e8d4cb4a33302ec4fa102c6d605

See more details on using hashes here.

File details

Details for the file cfnjsontoyaml-1.0.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for cfnjsontoyaml-1.0.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 239e876a58c6a961ad1bbf5d06c7a88a05f7a325b14a54b8ef8928785bd96a2e
MD5 dcda41a3499f3f549131d69fc3b49957
BLAKE2b-256 45462e50bc2586a631083ff235833f1f6afcfd05c8e08f974ffa0861a8e376e6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page