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 hashes)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

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