Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(cdk cli): Disable Pretty Printing CloudFormation JSON Templates #18886

Closed
wants to merge 2 commits into from

Commits on Feb 9, 2022

  1. disable pretty printing of json file

    The JSON file that is created by the CDK for deployment
    is only read by machines, but pretty printing
    the file uses up a lot of space. This is a practical
    concern due to the fact that CloudFormation
    has a file size limit for templates
    mckalexee committed Feb 9, 2022
    Configuration menu
    Copy the full SHA
    52810ae View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. change indentation from 2 to 1

    The CloudFormation console will display 
    the original template file that was 
    uploaded by the CDK. To balance the 
    concerns of readability and file size
    the indentation has been changed from
    two spaces to one space.
    
    Co-authored-by: Pat Myron <PatMyron@users.noreply.github.com>
    mckalexee and PatMyron committed Mar 2, 2022
    Configuration menu
    Copy the full SHA
    3e0ff7b View commit details
    Browse the repository at this point in the history