Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots/?cursor=cD0yMDI1LTA5LTE1KzE5JTNBMjklM0ExOC45NTQ3NzklMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA5LTE1KzE5JTNBMTQlM0E1MS43OTg3NjclMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOS0xNSsxOSUzQTI5JTNBMTguNTQ1Nzc4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-09-15T19:29:18.545778Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/151.embed",
            "fid": "kiran_bommapala:151",
            "filename": "infracost-costs-1757964550",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:151/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:151/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:151/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:151/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:151",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:151",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/151/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:29:18.564Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/151/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:145:32fbec",
                        "ysrc": "kiran_bommapala:145:9f6918",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:145:322246",
                        "ysrc": "kiran_bommapala:145:552d16",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:145:89a582",
                        "ysrc": "kiran_bommapala:145:ecd3b4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:145:6bea2d",
                        "ysrc": "kiran_bommapala:145:444329",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:145:378cd5",
                        "ysrc": "kiran_bommapala:145:6c9c5c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:29:15.784990Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/148.embed",
            "fid": "kiran_bommapala:148",
            "filename": "infracost-costs-1757964548",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:148/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:148/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:148/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:148/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:148",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:148",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/148/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:29:15.795Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/148/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:143:a2effd",
                        "ysrc": "kiran_bommapala:143:5de085",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:143:1c905a",
                        "ysrc": "kiran_bommapala:143:96d7ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:143:310700",
                        "ysrc": "kiran_bommapala:143:8f7e10",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:143:ab9420",
                        "ysrc": "kiran_bommapala:143:26c2e7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:143:f44658",
                        "ysrc": "kiran_bommapala:143:f1a0a8",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:29:12.882284Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/144.embed",
            "fid": "kiran_bommapala:144",
            "filename": "infracost-costs-1757964546",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:144/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:144/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:144/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:144/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:144",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:144",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/144/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:29:20.170Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/144/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:147:1861de",
                        "ysrc": "kiran_bommapala:147:11925d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:147:a10aff",
                        "ysrc": "kiran_bommapala:147:2838d1",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:147:db5598",
                        "ysrc": "kiran_bommapala:147:47c6d7",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:147:faa126",
                        "ysrc": "kiran_bommapala:147:7ac937",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:147:abaa17",
                        "ysrc": "kiran_bommapala:147:770b7f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:29:12.212541Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/142.embed",
            "fid": "kiran_bommapala:142",
            "filename": "infracost-costs-1757964545",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:142/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:142/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:142/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:142/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:142",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:142",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/142/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:29:12.224Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/142/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:139:d9f92f",
                        "ysrc": "kiran_bommapala:139:4a8e72",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:139:4ac15f",
                        "ysrc": "kiran_bommapala:139:b60430",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:139:e43f43",
                        "ysrc": "kiran_bommapala:139:4ab01d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:139:2d4971",
                        "ysrc": "kiran_bommapala:139:cb7190",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:139:50c492",
                        "ysrc": "kiran_bommapala:139:3b0a9f",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:29:11.724256Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/141.embed",
            "fid": "kiran_bommapala:141",
            "filename": "infracost-costs-1757964544",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:141/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:141/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:141/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:141/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:141",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:141",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/141/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:29:11.735Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/141/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:138:d4ab52",
                        "ysrc": "kiran_bommapala:138:d28e18",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:138:6bca52",
                        "ysrc": "kiran_bommapala:138:05e995",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:138:2166cf",
                        "ysrc": "kiran_bommapala:138:60739c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:138:b4352a",
                        "ysrc": "kiran_bommapala:138:1bb985",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:138:7cc1fb",
                        "ysrc": "kiran_bommapala:138:a60de6",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:28:53.577444Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/137.embed",
            "fid": "kiran_bommapala:137",
            "filename": "infracost-costs-1757964526",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:137/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:137/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:137/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:137/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:137",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:137",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/137/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:28:53.589Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/137/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:136:e6849f",
                        "ysrc": "kiran_bommapala:136:72dc48",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(141,211,199)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:136:1986e1",
                        "ysrc": "kiran_bommapala:136:c41b35",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(255,255,179)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:136:7638e5",
                        "ysrc": "kiran_bommapala:136:187ac9",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(190,186,218)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:136:25d736",
                        "ysrc": "kiran_bommapala:136:c9c612",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(251,128,114)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:136:d96d4b",
                        "ysrc": "kiran_bommapala:136:77c969",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "rgb(128,177,211)",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "width": 1200,
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": 1200,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:26:23.392608Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/135.embed",
            "fid": "kiran_bommapala:135",
            "filename": "infracost-costs-1757964376",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:135/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:135/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:135/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:135/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:135",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:135",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/135/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:26:23.403Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/135/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:134:c3541f",
                        "ysrc": "kiran_bommapala:134:2db7ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:134:47c2ef",
                        "ysrc": "kiran_bommapala:134:3212b2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:134:687fff",
                        "ysrc": "kiran_bommapala:134:7b18ec",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:134:8fb55b",
                        "ysrc": "kiran_bommapala:134:915c6e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:134:060649",
                        "ysrc": "kiran_bommapala:134:0b1110",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -30,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:20:55.267522Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/133.embed",
            "fid": "kiran_bommapala:133",
            "filename": "infracost-costs-1757964047",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:133/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:133/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:133/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:133/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:133",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:133",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/133/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:20:55.279Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/133/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:132:e05240",
                        "ysrc": "kiran_bommapala:132:c9bb83",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:132:56a582",
                        "ysrc": "kiran_bommapala:132:943900",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:132:7ca519",
                        "ysrc": "kiran_bommapala:132:e08219",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:132:79510d",
                        "ysrc": "kiran_bommapala:132:63168c",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:132:3068bd",
                        "ysrc": "kiran_bommapala:132:6a5c6b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:14:51.878374Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/131.embed",
            "fid": "kiran_bommapala:131",
            "filename": "infracost-costs-1757963684",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:131/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:131/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:131/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:131/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:131",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:131",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/131/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:14:51.890Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/131/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:127:32b39f",
                        "ysrc": "kiran_bommapala:127:97dcfd",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:127:37e35d",
                        "ysrc": "kiran_bommapala:127:4c8a72",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:127:ce21c8",
                        "ysrc": "kiran_bommapala:127:d07007",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:127:77f808",
                        "ysrc": "kiran_bommapala:127:a8e8ab",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:127:6a20c4",
                        "ysrc": "kiran_bommapala:127:848bbf",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2025-09-15T19:14:51.798767Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiran_bommapala/130.embed",
            "fid": "kiran_bommapala:130",
            "filename": "infracost-costs-1757963685",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiran_bommapala:130/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiran_bommapala:130/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:130/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiran_bommapala:130/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiran_bommapala:130",
                "plots": "https://api.plotly.com/v2/plots/kiran_bommapala:130",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiran_bommapala"
            },
            "owner": "kiran_bommapala",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiran_bommapala/130/",
            "world_readable": true,
            "date_modified": "2025-09-15T19:14:51.811Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiran_bommapala/130/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "aws_lb.hack_lb",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:126:d64eec",
                        "ysrc": "kiran_bommapala:126:ce06a2",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#636EFA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_lb.hack_lb",
                        "offsetgroup": "aws_lb.hack_lb",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_db_instance.hack_db",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:126:5c7b3e",
                        "ysrc": "kiran_bommapala:126:0eb5bc",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_db_instance.hack_db",
                        "offsetgroup": "aws_db_instance.hack_db",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:126:1aa423",
                        "ysrc": "kiran_bommapala:126:36e412",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#00CC96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm",
                        "offsetgroup": "aws_instance.hack_vm",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_instance.hack_vm2",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:126:108056",
                        "ysrc": "kiran_bommapala:126:99ad39",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#AB63FA",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_instance.hack_vm2",
                        "offsetgroup": "aws_instance.hack_vm2",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "aws_ebs_volume.hack_volume",
                        "type": "bar",
                        "xsrc": "kiran_bommapala:126:2ae848",
                        "ysrc": "kiran_bommapala:126:907e1e",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "color": "#FFA15A",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "aws_ebs_volume.hack_volume",
                        "offsetgroup": "aws_ebs_volume.hack_volume",
                        "orientation": "v",
                        "textposition": "auto",
                        "hovertemplate": "Resource=%{x}<br>Monthly Cost ($)=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Monthly Infracost Breakdown per Resource"
                    },
                    "xaxis": {
                        "title": {
                            "text": "Resource"
                        },
                        "anchor": "y",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "tickangle": -45,
                        "categoryarray": [
                            "aws_lb.hack_lb",
                            "aws_db_instance.hack_db",
                            "aws_instance.hack_vm",
                            "aws_instance.hack_vm2",
                            "aws_ebs_volume.hack_volume"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Monthly Cost ($)"
                        },
                        "anchor": "x",
                        "domain": [
                            0.0,
                            1.0
                        ]
                    },
                    "legend": {
                        "title": {
                            "text": "Resource"
                        },
                        "tracegroupgap": 0
                    },
                    "barmode": "relative",
                    "template": {
                        "data": {
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#000038"
                                        },
                                        "font": {
                                            "color": "#000037"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#000040"
                                        },
                                        "font": {
                                            "color": "#000036"
                                        },
                                        "line": {
                                            "color": "#000039"
                                        }
                                    }
                                }
                            ],
                            "icicle": [
                                {
                                    "type": "icicle",
                                    "textfont": {
                                        "color": "white"
                                    }
                                }
                            ],
                            "sankey": [
                                {
                                    "type": "sankey",
                                    "textfont": {
                                        "color": "#000036"
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "line": {
                                            "width": 0
                                        }
                                    }
                                }
                            ],
                            "waterfall": [
                                {
                                    "type": "waterfall",
                                    "totals": {
                                        "marker": {
                                            "color": "#000034"
                                        }
                                    },
                                    "connector": {
                                        "line": {
                                            "color": "#000036",
                                            "width": 2
                                        }
                                    },
                                    "decreasing": {
                                        "marker": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "marker": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "candlestick": [
                                {
                                    "type": "candlestick",
                                    "decreasing": {
                                        "line": {
                                            "color": "#000033"
                                        }
                                    },
                                    "increasing": {
                                        "line": {
                                            "color": "#000032"
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorscale": [
                                        [
                                            0.0,
                                            "#000011"
                                        ],
                                        [
                                            0.1111111111111111,
                                            "#000012"
                                        ],
                                        [
                                            0.2222222222222222,
                                            "#000013"
                                        ],
                                        [
                                            0.3333333333333333,
                                            "#000014"
                                        ],
                                        [
                                            0.4444444444444444,
                                            "#000015"
                                        ],
                                        [
                                            0.5555555555555556,
                                            "#000016"
                                        ],
                                        [
                                            0.6666666666666666,
                                            "#000017"
                                        ],
                                        [
                                            0.7777777777777778,
                                            "#000018"
                                        ],
                                        [
                                            0.8888888888888888,
                                            "#000019"
                                        ],
                                        [
                                            1.0,
                                            "#000020"
                                        ]
                                    ]
                                }
                            ]
                        },
                        "layout": {
                            "colorway": [
                                "#000001",
                                "#000002",
                                "#000003",
                                "#000004",
                                "#000005",
                                "#000006",
                                "#000007",
                                "#000008",
                                "#000009",
                                "#000010"
                            ],
                            "coloraxis": {
                                "colorscale": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            },
                            "colorscale": {
                                "diverging": [
                                    [
                                        0.0,
                                        "#000021"
                                    ],
                                    [
                                        0.1,
                                        "#000022"
                                    ],
                                    [
                                        0.2,
                                        "#000023"
                                    ],
                                    [
                                        0.3,
                                        "#000024"
                                    ],
                                    [
                                        0.4,
                                        "#000025"
                                    ],
                                    [
                                        0.5,
                                        "#000026"
                                    ],
                                    [
                                        0.6,
                                        "#000027"
                                    ],
                                    [
                                        0.7,
                                        "#000028"
                                    ],
                                    [
                                        0.8,
                                        "#000029"
                                    ],
                                    [
                                        0.9,
                                        "#000030"
                                    ],
                                    [
                                        1.0,
                                        "#000031"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0.0,
                                        "#000011"
                                    ],
                                    [
                                        0.1111111111111111,
                                        "#000012"
                                    ],
                                    [
                                        0.2222222222222222,
                                        "#000013"
                                    ],
                                    [
                                        0.3333333333333333,
                                        "#000014"
                                    ],
                                    [
                                        0.4444444444444444,
                                        "#000015"
                                    ],
                                    [
                                        0.5555555555555556,
                                        "#000016"
                                    ],
                                    [
                                        0.6666666666666666,
                                        "#000017"
                                    ],
                                    [
                                        0.7777777777777778,
                                        "#000018"
                                    ],
                                    [
                                        0.8888888888888888,
                                        "#000019"
                                    ],
                                    [
                                        1.0,
                                        "#000020"
                                    ]
                                ]
                            }
                        }
                    },
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiran_bommapala",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-09-14 06:32:42",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiran_bommapala",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}