Skip to main content

Flatplan is a tool that groups all resources and providers specified in a Terraform plan file

Project description

Flatplan

Flatplan is a command line tool that can be used to flatten the resources and providers found inside a terraform plan. You can obtain a JSON version of the plan by running:

terraform plan -out=planfile
terraform show -json planfile > plan.json

Now, we can feed our exported JSON plan to flatplan:

flatplan --plan=plan.json --output=flattened_plan.json --debug

The problem we are trying to solve with flatplan is that, when you export the plan to JSON the resources might be in different locations which makes it hard for other tools to find them. Therefore, flatplan will extract all resources and providers for you and return a much simpler JSON structure.

For example, let's say we have a complex terraform project that uses many modules and submodules. When we create the plan file for this project and then export it to JSON we might end up with something like this:

{
    ...
    "planned_values": {
        "root_module": {
            "resources": [
                ... a lot of resources here ...
            ],
            "child_modules": [{
                "resources": [
                    ... a lot of resources here ...
                ],
                "child_modules": [{
                    "resources": [
                        ... a lot of resources here ...
                    ],
                    "child_modules": [{
                        ... and so on ...
                    }]
                }]
            }, {
                "resources": [
                    ... a lot of resources here ...
                ],
                "child_modules": [{
                    "resources": [
                        ... a lot of resources here ...
                    ],
                    "child_modules": [{
                        ... and so on ...
                    }]
                }]
            }]
        }
    },
    ...
    "configuration": {
        "provider_config": {
            "aws": {
                "name": "aws",
                "expressions": {
                    "region": {
                        "constant_value": "us-east-1"
                    }
                }
            }
        }
    }
}

As you can see this recursive nature of the plan can get quite ugly if you use a lot of modules and submodules. After, flatplan process this file we will get:

{
    "resources": [ ... all resources here ... ],
    "providers": [ ... all providers here ... ]
}

This makes it easy for tools like Open Policy Agent to process our file since it has no way to recursively traverse a raw terraform plan.

Install

If you use pip:

pip install flatplan

If you use pipx:

pipx install flatplan

Usage

Flatplan accepts the following command line parameters:

--debug: Sets log level to debug, default: False.

--output="path": Writes flattened plan to the specified path, default: STDOUT.

--plan="path": Reads JSON plan from the specified path, default: STDIN.

--remove="tag=value": Removes the resources that contain a certain tag, default: empty

Example:

flatplan --debug --output=flattened.json --plan=plan.json --remove="remove=true"

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

flatplan-1.1.2.tar.gz (37.0 kB view hashes)

Uploaded Source

Built Distribution

flatplan-1.1.2-py3-none-any.whl (22.3 kB view hashes)

Uploaded 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