├── .env.example ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── bump_cli_version.yml │ ├── checks.yml │ ├── codeql-analysis.yml │ ├── release.yml │ ├── release_dev.yml │ ├── release_prod.yml │ └── upload_assets.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── faq.md ├── features │ ├── cli_commands.md │ ├── config_file.mdx │ ├── environment_variables.md │ ├── terraform_modules.md │ ├── terragrunt.md │ ├── usage_based_resources.md │ └── vscode.md ├── getting_started.md ├── infracost_cloud │ ├── api.md │ ├── autofix.md │ ├── campaigns.md │ ├── custom_price_books.md │ ├── data_export.md │ ├── engineer_guide.md │ ├── finops_policies.md │ ├── get_started.md │ ├── guardrails.md │ ├── infracarbon.md │ ├── issue_explorer.md │ ├── jira_integration.md │ ├── key_concepts.md │ ├── readme_badge.md │ ├── reports.md │ ├── sso.md │ └── tagging_policies.md ├── integrations │ ├── azure_repos_app.md │ ├── cicd.mdx │ ├── cicd_integrations.md │ ├── github_app.mdx │ ├── gitlab_app.md │ ├── infracost_api.md │ ├── open_policy_agent.md │ ├── slack.md │ ├── spacelift.md │ ├── terraform_cloud_enterprise.md │ └── third_party_integrations.md ├── privacy_policy.md ├── support.md ├── supported_resources │ ├── aws.md │ ├── azure.md │ ├── cloud_pricing_api.md │ ├── google.md │ └── overview.md ├── terms_of_service.md └── troubleshooting.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src ├── components │ ├── CTA.js │ ├── Footer.js │ ├── GitHubStarCount.js │ ├── Navbar.js │ ├── PageLayout.js │ ├── icons │ │ ├── ArrowIcon.tsx │ │ ├── BookIcon.tsx │ │ ├── Check.js │ │ ├── LinkedInIcon.js │ │ ├── OpenBookIcon.tsx │ │ ├── SearchIcon.tsx │ │ └── TwitterIcon.js │ └── utils │ │ └── WebPPngFallback.tsx ├── css │ ├── base.css │ ├── components.css │ ├── docs.css │ ├── footer.css │ ├── index.css │ └── navbar.css └── theme │ ├── Footer │ ├── index.js │ └── styles.module.css │ └── Navbar │ ├── index.js │ └── styles.module.css ├── static ├── .nojekyll ├── files │ └── aws_custom_prices.csv ├── img │ ├── azure │ │ ├── azure-app-install-1.png │ │ ├── azure-app-install-2.png │ │ ├── dismiss.png │ │ ├── failure.png │ │ ├── help.png │ │ └── snooze.png │ ├── bg-top.svg │ ├── bg.svg │ ├── ci-cd │ │ ├── github_actions_screenshot.png │ │ └── github_actions_screenshot.webp │ ├── docs │ │ └── cloud_pricing_api │ │ │ ├── deployment_overview.png │ │ │ └── stats_page.png │ ├── favicon.png │ ├── github │ │ ├── checks.png │ │ ├── desc.png │ │ ├── dismissed-table.png │ │ ├── help.png │ │ ├── passing.png │ │ ├── reaction.png │ │ ├── snooze-checks.png │ │ ├── snooze.png │ │ └── verify-email.png │ ├── gitlab │ │ ├── complete.png │ │ ├── dismiss.png │ │ ├── help.png │ │ └── snooze.png │ ├── icon-primary.svg │ ├── icons │ │ ├── approval-icon.svg │ │ ├── check.svg │ │ ├── choices-icon.svg │ │ ├── close.svg │ │ ├── github.svg │ │ ├── hamburger.svg │ │ ├── heart.svg │ │ ├── open-source.svg │ │ ├── problem-icon.svg │ │ ├── product-walkthrough-icon.svg │ │ ├── rocket-white.svg │ │ ├── slack.svg │ │ ├── slack.webp │ │ ├── soc2.png │ │ ├── social-icons.svg │ │ ├── social │ │ │ ├── linkedin.svg │ │ │ └── twitter.svg │ │ ├── star-white.svg │ │ ├── star.svg │ │ └── visibility-icon.svg │ ├── infracost-cloud │ │ ├── auth0-account-link.png │ │ ├── autofix │ │ │ ├── autofix-button.png │ │ │ ├── autofix-created.png │ │ │ ├── autofix-enabled.png │ │ │ ├── autofix-pr.png │ │ │ ├── autofix-prompt.png │ │ │ ├── create-campaign.png │ │ │ ├── diff.png │ │ │ └── issue-browse.png │ │ ├── baseline-vs-usage-costs.png │ │ ├── campaigns │ │ │ ├── campaigns-create.png │ │ │ ├── campaigns-navigation.png │ │ │ └── campaigns-performance.png │ │ ├── cli-project-name.png │ │ ├── cloudformation-stack-new.png │ │ ├── cloudformation-stack.png │ │ ├── create-orgs.png │ │ ├── custom-price-books.png │ │ ├── dashboard-chart.png │ │ ├── dashboard.png │ │ ├── dashboard.webp │ │ ├── data-export.png │ │ ├── default-repo-config-file.png │ │ ├── engineer-guide │ │ │ ├── help-command.png │ │ │ ├── login.png │ │ │ └── pr-comment.png │ │ ├── finops-policies │ │ │ ├── burndown-chart.png │ │ │ ├── chart.png │ │ │ ├── policies.png │ │ │ ├── policy-settings.png │ │ │ ├── pr-comment-expanded.png │ │ │ ├── preferred.png │ │ │ └── production-filters.png │ │ ├── github-app │ │ │ ├── block-prs.png │ │ │ ├── bpr-required-check.png │ │ │ └── ruleset-required-check.png │ │ ├── guardrails │ │ │ ├── actions.png │ │ │ ├── azure-repos-require-status-pass.png │ │ │ ├── blocked-pull-request.png │ │ │ ├── cost-savings.png │ │ │ ├── custom-pull-request-message.png │ │ │ ├── email.png │ │ │ ├── guardrail-events.png │ │ │ ├── guardrail-with-custom-message.png │ │ │ ├── index.png │ │ │ ├── name-and-scope.png │ │ │ ├── notifications.png │ │ │ ├── pull-request-filters.png │ │ │ ├── slack-message.png │ │ │ ├── thresholds.png │ │ │ └── unblock-pr.png │ │ ├── infra-carbon-comment-example.png │ │ ├── infracost-cloud-project-name.png │ │ ├── org-api-key-tick.png │ │ ├── org-api-key.png │ │ ├── org-id.png │ │ ├── pr-comment-project-name.png │ │ ├── pull-request-comment.png │ │ ├── pull-request-status-filter.png │ │ ├── pull-request-with-usage-cost.png │ │ ├── pull-requests-tab.png │ │ ├── readme-badge-code.png │ │ ├── readme-badge-settings.png │ │ ├── readme-badge.png │ │ ├── report-create.png │ │ ├── report-email.png │ │ ├── runs.png │ │ ├── s3-bucket-policy-editor.png │ │ ├── s3-bucket-policy.png │ │ ├── s3-create-event-notification.png │ │ ├── s3-notification-created.png │ │ ├── s3-notification-event-types.png │ │ ├── s3-notification-general-config.png │ │ ├── s3-permissions.png │ │ ├── s3-properties.png │ │ ├── s3-topic-config.png │ │ ├── spacelift │ │ │ ├── config_file.png │ │ │ ├── github_run_configurations.png │ │ │ └── github_run_remote_module.png │ │ ├── tagging-policies │ │ │ ├── actions-to-take.png │ │ │ ├── branch-policies.png │ │ │ ├── coverage-chart.png │ │ │ ├── customizations.png │ │ │ ├── define-tags.png │ │ │ ├── filters.png │ │ │ ├── name-and-scope.png │ │ │ └── pull-request-tags.png │ │ ├── usage-defaults.png │ │ └── usage-overrides.png │ ├── issue-explorer │ │ ├── issue-explorer-business-unit-filtered-fixed.png │ │ ├── issue-explorer-business-unit-filtered-improving.png │ │ ├── issue-explorer-business-unit-filtered-prevented.png │ │ ├── issue-explorer-business-unit-filtered-regressing.png │ │ ├── issue-explorer-business-unit-filtered.png │ │ ├── issue-explorer-business-unit.png │ │ ├── issue-explorer-by-serviceid.png │ │ ├── issue-explorer-compute-increasing.png │ │ ├── issue-explorer-daterange.png │ │ ├── issue-explorer-fixed-by-serviceid.png │ │ ├── issue-explorer-groupby.png │ │ ├── issue-explorer-metrics.png │ │ ├── issue-explorer-nav.png │ │ ├── issue-explorer-switch-chart-type.png │ │ ├── issue-explorer-vms-decreasing.png │ │ └── issue-explorer.png │ ├── jira │ │ ├── 0-organization-settings.png │ │ ├── 1-generate-token.png │ │ ├── 10-success-status.png │ │ ├── 11-pull-request.png │ │ ├── 12-accept-permissions.png │ │ ├── 13-successful-pr.png │ │ ├── 2-copy-token.png │ │ ├── 3-integration-status.png │ │ ├── 4-install-app.png │ │ ├── 5-select-server.png │ │ ├── 6-success-install.png │ │ ├── 7-manage-apps.png │ │ ├── 8-select-infracost.png │ │ ├── 9-add-token.png │ │ ├── app-guardrails.png │ │ ├── app-issue.png │ │ ├── dashboard.png │ │ ├── filter.png │ │ └── issue.png │ ├── logo-light.png │ ├── logo-light.svg │ ├── logo.png │ ├── logo.svg │ ├── screenshots │ │ ├── 0.8_breakdown_no_usage.png │ │ ├── 0.8_diff_screenshot.png │ │ ├── actions-pull-request.png │ │ ├── atlantis-comment.png │ │ ├── azure-app-comment.png │ │ ├── azure-app-install.png │ │ ├── azure-pull-request.png │ │ ├── cost-guardrails-and-policies.png │ │ ├── cost-guardrails-and-policies.webp │ │ ├── cost-policy-fail.png │ │ ├── cost-visibility-for-product-changes.png │ │ ├── cost-visibility-for-product-changes.webp │ │ ├── cost-visibility.png │ │ ├── cost-visibility.webp │ │ ├── diff-screenshot.png │ │ ├── enterprise-ready.png │ │ ├── enterprise-ready.webp │ │ ├── get-started-breakdown.png │ │ ├── get-started-diff.png │ │ ├── get-started-infracost-cloud.png │ │ ├── get-started-vscode.gif │ │ ├── github-app-comment.png │ │ ├── github-app-install.png │ │ ├── github-comment-format.png │ │ ├── gitlab-app-comment.png │ │ ├── gitlab-app-install.png │ │ ├── gitlab-comment.png │ │ ├── hashicorp-infracost-partner-badge.png │ │ ├── html_report.png │ │ ├── paste-output.png │ │ ├── policy-failure-github.png │ │ ├── policy-passing-github.png │ │ ├── post_to_slack.png │ │ ├── pr-step-1.png │ │ ├── pr-step-1.webp │ │ ├── pr-step-2.png │ │ ├── pr-step-3.png │ │ ├── pr-step-4.png │ │ ├── share-link-mock.png │ │ ├── slack-message-format.png │ │ └── tfc_integration.png │ ├── services │ │ ├── atlantis.png │ │ ├── aws-cloud-formation.svg │ │ ├── aws.svg │ │ ├── azure-pipelines.png │ │ ├── azure-repos.svg │ │ ├── azure.svg │ │ ├── bitbucket-pipelines.png │ │ ├── bitbucket.svg │ │ ├── circleci.svg │ │ ├── docker.png │ │ ├── env0.svg │ │ ├── github-actions-icon.svg │ │ ├── github-actions.png │ │ ├── github.svg │ │ ├── gitlab-ci.png │ │ ├── gitlab.svg │ │ ├── google-cloud.svg │ │ ├── hashicorp.svg │ │ ├── jenkins.svg │ │ ├── pulumi.svg │ │ ├── scalr.png │ │ ├── slack.svg │ │ ├── spacelift.svg │ │ ├── spotify-backstage.svg │ │ ├── terraform-cloud.svg │ │ └── terraform.svg │ ├── shift-left.svg │ ├── small-logo.png │ ├── social-image.png │ ├── social │ │ ├── HinnerkHaardt.jpg │ │ ├── KeithBaker.jpg │ │ ├── MatthewTovbin.jpg │ │ ├── ShabanovAlexey.jpg │ │ ├── ayrtonfreeman.jpg │ │ └── jderusse.jpg │ ├── sso │ │ ├── google-workspace-attributes.png │ │ ├── google-workspace-service-provider.png │ │ ├── okta-attribute-statements.png │ │ └── okta-saml-settings.png │ └── vscode-extension │ │ ├── maintf.png │ │ └── maintf.webp ├── releases.json └── robots.txt └── static_src └── carbon-config-screenshot.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/bump_cli_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/bump_cli_version.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/release_dev.yml -------------------------------------------------------------------------------- /.github/workflows/release_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/release_prod.yml -------------------------------------------------------------------------------- /.github/workflows/upload_assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.github/workflows/upload_assets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.14.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /static 2 | /build -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/features/cli_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/cli_commands.md -------------------------------------------------------------------------------- /docs/features/config_file.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/config_file.mdx -------------------------------------------------------------------------------- /docs/features/environment_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/environment_variables.md -------------------------------------------------------------------------------- /docs/features/terraform_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/terraform_modules.md -------------------------------------------------------------------------------- /docs/features/terragrunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/terragrunt.md -------------------------------------------------------------------------------- /docs/features/usage_based_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/usage_based_resources.md -------------------------------------------------------------------------------- /docs/features/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/features/vscode.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/infracost_cloud/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/api.md -------------------------------------------------------------------------------- /docs/infracost_cloud/autofix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/autofix.md -------------------------------------------------------------------------------- /docs/infracost_cloud/campaigns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/campaigns.md -------------------------------------------------------------------------------- /docs/infracost_cloud/custom_price_books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/custom_price_books.md -------------------------------------------------------------------------------- /docs/infracost_cloud/data_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/data_export.md -------------------------------------------------------------------------------- /docs/infracost_cloud/engineer_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/engineer_guide.md -------------------------------------------------------------------------------- /docs/infracost_cloud/finops_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/finops_policies.md -------------------------------------------------------------------------------- /docs/infracost_cloud/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/get_started.md -------------------------------------------------------------------------------- /docs/infracost_cloud/guardrails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/guardrails.md -------------------------------------------------------------------------------- /docs/infracost_cloud/infracarbon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/infracarbon.md -------------------------------------------------------------------------------- /docs/infracost_cloud/issue_explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/issue_explorer.md -------------------------------------------------------------------------------- /docs/infracost_cloud/jira_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/jira_integration.md -------------------------------------------------------------------------------- /docs/infracost_cloud/key_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/key_concepts.md -------------------------------------------------------------------------------- /docs/infracost_cloud/readme_badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/readme_badge.md -------------------------------------------------------------------------------- /docs/infracost_cloud/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/reports.md -------------------------------------------------------------------------------- /docs/infracost_cloud/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/sso.md -------------------------------------------------------------------------------- /docs/infracost_cloud/tagging_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/infracost_cloud/tagging_policies.md -------------------------------------------------------------------------------- /docs/integrations/azure_repos_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/azure_repos_app.md -------------------------------------------------------------------------------- /docs/integrations/cicd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/cicd.mdx -------------------------------------------------------------------------------- /docs/integrations/cicd_integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/cicd_integrations.md -------------------------------------------------------------------------------- /docs/integrations/github_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/github_app.mdx -------------------------------------------------------------------------------- /docs/integrations/gitlab_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/gitlab_app.md -------------------------------------------------------------------------------- /docs/integrations/infracost_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/infracost_api.md -------------------------------------------------------------------------------- /docs/integrations/open_policy_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/open_policy_agent.md -------------------------------------------------------------------------------- /docs/integrations/slack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/slack.md -------------------------------------------------------------------------------- /docs/integrations/spacelift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/spacelift.md -------------------------------------------------------------------------------- /docs/integrations/terraform_cloud_enterprise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/terraform_cloud_enterprise.md -------------------------------------------------------------------------------- /docs/integrations/third_party_integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/integrations/third_party_integrations.md -------------------------------------------------------------------------------- /docs/privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/privacy_policy.md -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/support.md -------------------------------------------------------------------------------- /docs/supported_resources/aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/supported_resources/aws.md -------------------------------------------------------------------------------- /docs/supported_resources/azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/supported_resources/azure.md -------------------------------------------------------------------------------- /docs/supported_resources/cloud_pricing_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/supported_resources/cloud_pricing_api.md -------------------------------------------------------------------------------- /docs/supported_resources/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/supported_resources/google.md -------------------------------------------------------------------------------- /docs/supported_resources/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/supported_resources/overview.md -------------------------------------------------------------------------------- /docs/terms_of_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/terms_of_service.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/CTA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/CTA.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/GitHubStarCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/GitHubStarCount.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/PageLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/PageLayout.js -------------------------------------------------------------------------------- /src/components/icons/ArrowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/ArrowIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/BookIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/BookIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/Check.js -------------------------------------------------------------------------------- /src/components/icons/LinkedInIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/LinkedInIcon.js -------------------------------------------------------------------------------- /src/components/icons/OpenBookIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/OpenBookIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/TwitterIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/icons/TwitterIcon.js -------------------------------------------------------------------------------- /src/components/utils/WebPPngFallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/components/utils/WebPPngFallback.tsx -------------------------------------------------------------------------------- /src/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/base.css -------------------------------------------------------------------------------- /src/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/components.css -------------------------------------------------------------------------------- /src/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/docs.css -------------------------------------------------------------------------------- /src/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/footer.css -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/css/navbar.css -------------------------------------------------------------------------------- /src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/theme/Footer/index.js -------------------------------------------------------------------------------- /src/theme/Footer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/theme/Footer/styles.module.css -------------------------------------------------------------------------------- /src/theme/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/theme/Navbar/index.js -------------------------------------------------------------------------------- /src/theme/Navbar/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/src/theme/Navbar/styles.module.css -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/files/aws_custom_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/files/aws_custom_prices.csv -------------------------------------------------------------------------------- /static/img/azure/azure-app-install-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/azure-app-install-1.png -------------------------------------------------------------------------------- /static/img/azure/azure-app-install-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/azure-app-install-2.png -------------------------------------------------------------------------------- /static/img/azure/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/dismiss.png -------------------------------------------------------------------------------- /static/img/azure/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/failure.png -------------------------------------------------------------------------------- /static/img/azure/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/help.png -------------------------------------------------------------------------------- /static/img/azure/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/azure/snooze.png -------------------------------------------------------------------------------- /static/img/bg-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/bg-top.svg -------------------------------------------------------------------------------- /static/img/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/bg.svg -------------------------------------------------------------------------------- /static/img/ci-cd/github_actions_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/ci-cd/github_actions_screenshot.png -------------------------------------------------------------------------------- /static/img/ci-cd/github_actions_screenshot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/ci-cd/github_actions_screenshot.webp -------------------------------------------------------------------------------- /static/img/docs/cloud_pricing_api/deployment_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/docs/cloud_pricing_api/deployment_overview.png -------------------------------------------------------------------------------- /static/img/docs/cloud_pricing_api/stats_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/docs/cloud_pricing_api/stats_page.png -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/github/checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/checks.png -------------------------------------------------------------------------------- /static/img/github/desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/desc.png -------------------------------------------------------------------------------- /static/img/github/dismissed-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/dismissed-table.png -------------------------------------------------------------------------------- /static/img/github/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/help.png -------------------------------------------------------------------------------- /static/img/github/passing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/passing.png -------------------------------------------------------------------------------- /static/img/github/reaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/reaction.png -------------------------------------------------------------------------------- /static/img/github/snooze-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/snooze-checks.png -------------------------------------------------------------------------------- /static/img/github/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/snooze.png -------------------------------------------------------------------------------- /static/img/github/verify-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/github/verify-email.png -------------------------------------------------------------------------------- /static/img/gitlab/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/gitlab/complete.png -------------------------------------------------------------------------------- /static/img/gitlab/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/gitlab/dismiss.png -------------------------------------------------------------------------------- /static/img/gitlab/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/gitlab/help.png -------------------------------------------------------------------------------- /static/img/gitlab/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/gitlab/snooze.png -------------------------------------------------------------------------------- /static/img/icon-primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icon-primary.svg -------------------------------------------------------------------------------- /static/img/icons/approval-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/approval-icon.svg -------------------------------------------------------------------------------- /static/img/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/check.svg -------------------------------------------------------------------------------- /static/img/icons/choices-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/choices-icon.svg -------------------------------------------------------------------------------- /static/img/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/close.svg -------------------------------------------------------------------------------- /static/img/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/github.svg -------------------------------------------------------------------------------- /static/img/icons/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/hamburger.svg -------------------------------------------------------------------------------- /static/img/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/heart.svg -------------------------------------------------------------------------------- /static/img/icons/open-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/open-source.svg -------------------------------------------------------------------------------- /static/img/icons/problem-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/problem-icon.svg -------------------------------------------------------------------------------- /static/img/icons/product-walkthrough-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/product-walkthrough-icon.svg -------------------------------------------------------------------------------- /static/img/icons/rocket-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/rocket-white.svg -------------------------------------------------------------------------------- /static/img/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/slack.svg -------------------------------------------------------------------------------- /static/img/icons/slack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/slack.webp -------------------------------------------------------------------------------- /static/img/icons/soc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/soc2.png -------------------------------------------------------------------------------- /static/img/icons/social-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/social-icons.svg -------------------------------------------------------------------------------- /static/img/icons/social/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/social/linkedin.svg -------------------------------------------------------------------------------- /static/img/icons/social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/social/twitter.svg -------------------------------------------------------------------------------- /static/img/icons/star-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/star-white.svg -------------------------------------------------------------------------------- /static/img/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/star.svg -------------------------------------------------------------------------------- /static/img/icons/visibility-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/icons/visibility-icon.svg -------------------------------------------------------------------------------- /static/img/infracost-cloud/auth0-account-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/auth0-account-link.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/autofix-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/autofix-button.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/autofix-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/autofix-created.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/autofix-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/autofix-enabled.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/autofix-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/autofix-pr.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/autofix-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/autofix-prompt.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/create-campaign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/create-campaign.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/diff.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/autofix/issue-browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/autofix/issue-browse.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/baseline-vs-usage-costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/baseline-vs-usage-costs.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/campaigns/campaigns-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/campaigns/campaigns-create.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/campaigns/campaigns-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/campaigns/campaigns-navigation.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/campaigns/campaigns-performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/campaigns/campaigns-performance.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/cli-project-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/cli-project-name.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/cloudformation-stack-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/cloudformation-stack-new.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/cloudformation-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/cloudformation-stack.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/create-orgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/create-orgs.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/custom-price-books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/custom-price-books.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/dashboard-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/dashboard-chart.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/dashboard.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/dashboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/dashboard.webp -------------------------------------------------------------------------------- /static/img/infracost-cloud/data-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/data-export.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/default-repo-config-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/default-repo-config-file.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/engineer-guide/help-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/engineer-guide/help-command.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/engineer-guide/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/engineer-guide/login.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/engineer-guide/pr-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/engineer-guide/pr-comment.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/burndown-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/burndown-chart.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/chart.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/policies.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/policy-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/policy-settings.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/pr-comment-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/pr-comment-expanded.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/preferred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/preferred.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/finops-policies/production-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/finops-policies/production-filters.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/github-app/block-prs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/github-app/block-prs.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/github-app/bpr-required-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/github-app/bpr-required-check.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/github-app/ruleset-required-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/github-app/ruleset-required-check.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/actions.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/azure-repos-require-status-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/azure-repos-require-status-pass.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/blocked-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/blocked-pull-request.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/cost-savings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/cost-savings.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/custom-pull-request-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/custom-pull-request-message.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/email.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/guardrail-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/guardrail-events.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/guardrail-with-custom-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/guardrail-with-custom-message.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/index.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/name-and-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/name-and-scope.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/notifications.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/pull-request-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/pull-request-filters.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/slack-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/slack-message.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/thresholds.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/guardrails/unblock-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/guardrails/unblock-pr.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/infra-carbon-comment-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/infra-carbon-comment-example.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/infracost-cloud-project-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/infracost-cloud-project-name.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/org-api-key-tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/org-api-key-tick.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/org-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/org-api-key.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/org-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/org-id.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/pr-comment-project-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/pr-comment-project-name.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/pull-request-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/pull-request-comment.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/pull-request-status-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/pull-request-status-filter.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/pull-request-with-usage-cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/pull-request-with-usage-cost.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/pull-requests-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/pull-requests-tab.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/readme-badge-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/readme-badge-code.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/readme-badge-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/readme-badge-settings.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/readme-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/readme-badge.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/report-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/report-create.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/report-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/report-email.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/runs.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-bucket-policy-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-bucket-policy-editor.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-bucket-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-bucket-policy.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-create-event-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-create-event-notification.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-notification-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-notification-created.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-notification-event-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-notification-event-types.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-notification-general-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-notification-general-config.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-permissions.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-properties.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/s3-topic-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/s3-topic-config.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/spacelift/config_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/spacelift/config_file.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/spacelift/github_run_configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/spacelift/github_run_configurations.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/spacelift/github_run_remote_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/spacelift/github_run_remote_module.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/actions-to-take.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/actions-to-take.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/branch-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/branch-policies.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/coverage-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/coverage-chart.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/customizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/customizations.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/define-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/define-tags.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/filters.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/name-and-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/name-and-scope.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/tagging-policies/pull-request-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/tagging-policies/pull-request-tags.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/usage-defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/usage-defaults.png -------------------------------------------------------------------------------- /static/img/infracost-cloud/usage-overrides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/infracost-cloud/usage-overrides.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit-filtered-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit-filtered-fixed.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit-filtered-improving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit-filtered-improving.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit-filtered-prevented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit-filtered-prevented.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit-filtered-regressing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit-filtered-regressing.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit-filtered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit-filtered.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-business-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-business-unit.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-by-serviceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-by-serviceid.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-compute-increasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-compute-increasing.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-daterange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-daterange.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-fixed-by-serviceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-fixed-by-serviceid.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-groupby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-groupby.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-metrics.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-nav.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-switch-chart-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-switch-chart-type.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer-vms-decreasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer-vms-decreasing.png -------------------------------------------------------------------------------- /static/img/issue-explorer/issue-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/issue-explorer/issue-explorer.png -------------------------------------------------------------------------------- /static/img/jira/0-organization-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/0-organization-settings.png -------------------------------------------------------------------------------- /static/img/jira/1-generate-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/1-generate-token.png -------------------------------------------------------------------------------- /static/img/jira/10-success-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/10-success-status.png -------------------------------------------------------------------------------- /static/img/jira/11-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/11-pull-request.png -------------------------------------------------------------------------------- /static/img/jira/12-accept-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/12-accept-permissions.png -------------------------------------------------------------------------------- /static/img/jira/13-successful-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/13-successful-pr.png -------------------------------------------------------------------------------- /static/img/jira/2-copy-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/2-copy-token.png -------------------------------------------------------------------------------- /static/img/jira/3-integration-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/3-integration-status.png -------------------------------------------------------------------------------- /static/img/jira/4-install-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/4-install-app.png -------------------------------------------------------------------------------- /static/img/jira/5-select-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/5-select-server.png -------------------------------------------------------------------------------- /static/img/jira/6-success-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/6-success-install.png -------------------------------------------------------------------------------- /static/img/jira/7-manage-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/7-manage-apps.png -------------------------------------------------------------------------------- /static/img/jira/8-select-infracost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/8-select-infracost.png -------------------------------------------------------------------------------- /static/img/jira/9-add-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/9-add-token.png -------------------------------------------------------------------------------- /static/img/jira/app-guardrails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/app-guardrails.png -------------------------------------------------------------------------------- /static/img/jira/app-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/app-issue.png -------------------------------------------------------------------------------- /static/img/jira/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/dashboard.png -------------------------------------------------------------------------------- /static/img/jira/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/filter.png -------------------------------------------------------------------------------- /static/img/jira/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/jira/issue.png -------------------------------------------------------------------------------- /static/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/logo-light.png -------------------------------------------------------------------------------- /static/img/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/logo-light.svg -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/screenshots/0.8_breakdown_no_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/0.8_breakdown_no_usage.png -------------------------------------------------------------------------------- /static/img/screenshots/0.8_diff_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/0.8_diff_screenshot.png -------------------------------------------------------------------------------- /static/img/screenshots/actions-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/actions-pull-request.png -------------------------------------------------------------------------------- /static/img/screenshots/atlantis-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/atlantis-comment.png -------------------------------------------------------------------------------- /static/img/screenshots/azure-app-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/azure-app-comment.png -------------------------------------------------------------------------------- /static/img/screenshots/azure-app-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/azure-app-install.png -------------------------------------------------------------------------------- /static/img/screenshots/azure-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/azure-pull-request.png -------------------------------------------------------------------------------- /static/img/screenshots/cost-guardrails-and-policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-guardrails-and-policies.png -------------------------------------------------------------------------------- /static/img/screenshots/cost-guardrails-and-policies.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-guardrails-and-policies.webp -------------------------------------------------------------------------------- /static/img/screenshots/cost-policy-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-policy-fail.png -------------------------------------------------------------------------------- /static/img/screenshots/cost-visibility-for-product-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-visibility-for-product-changes.png -------------------------------------------------------------------------------- /static/img/screenshots/cost-visibility-for-product-changes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-visibility-for-product-changes.webp -------------------------------------------------------------------------------- /static/img/screenshots/cost-visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-visibility.png -------------------------------------------------------------------------------- /static/img/screenshots/cost-visibility.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/cost-visibility.webp -------------------------------------------------------------------------------- /static/img/screenshots/diff-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/diff-screenshot.png -------------------------------------------------------------------------------- /static/img/screenshots/enterprise-ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/enterprise-ready.png -------------------------------------------------------------------------------- /static/img/screenshots/enterprise-ready.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/enterprise-ready.webp -------------------------------------------------------------------------------- /static/img/screenshots/get-started-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/get-started-breakdown.png -------------------------------------------------------------------------------- /static/img/screenshots/get-started-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/get-started-diff.png -------------------------------------------------------------------------------- /static/img/screenshots/get-started-infracost-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/get-started-infracost-cloud.png -------------------------------------------------------------------------------- /static/img/screenshots/get-started-vscode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/get-started-vscode.gif -------------------------------------------------------------------------------- /static/img/screenshots/github-app-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/github-app-comment.png -------------------------------------------------------------------------------- /static/img/screenshots/github-app-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/github-app-install.png -------------------------------------------------------------------------------- /static/img/screenshots/github-comment-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/github-comment-format.png -------------------------------------------------------------------------------- /static/img/screenshots/gitlab-app-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/gitlab-app-comment.png -------------------------------------------------------------------------------- /static/img/screenshots/gitlab-app-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/gitlab-app-install.png -------------------------------------------------------------------------------- /static/img/screenshots/gitlab-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/gitlab-comment.png -------------------------------------------------------------------------------- /static/img/screenshots/hashicorp-infracost-partner-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/hashicorp-infracost-partner-badge.png -------------------------------------------------------------------------------- /static/img/screenshots/html_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/html_report.png -------------------------------------------------------------------------------- /static/img/screenshots/paste-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/paste-output.png -------------------------------------------------------------------------------- /static/img/screenshots/policy-failure-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/policy-failure-github.png -------------------------------------------------------------------------------- /static/img/screenshots/policy-passing-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/policy-passing-github.png -------------------------------------------------------------------------------- /static/img/screenshots/post_to_slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/post_to_slack.png -------------------------------------------------------------------------------- /static/img/screenshots/pr-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/pr-step-1.png -------------------------------------------------------------------------------- /static/img/screenshots/pr-step-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/pr-step-1.webp -------------------------------------------------------------------------------- /static/img/screenshots/pr-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/pr-step-2.png -------------------------------------------------------------------------------- /static/img/screenshots/pr-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/pr-step-3.png -------------------------------------------------------------------------------- /static/img/screenshots/pr-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/pr-step-4.png -------------------------------------------------------------------------------- /static/img/screenshots/share-link-mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/share-link-mock.png -------------------------------------------------------------------------------- /static/img/screenshots/slack-message-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/slack-message-format.png -------------------------------------------------------------------------------- /static/img/screenshots/tfc_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/screenshots/tfc_integration.png -------------------------------------------------------------------------------- /static/img/services/atlantis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/atlantis.png -------------------------------------------------------------------------------- /static/img/services/aws-cloud-formation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/aws-cloud-formation.svg -------------------------------------------------------------------------------- /static/img/services/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/aws.svg -------------------------------------------------------------------------------- /static/img/services/azure-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/azure-pipelines.png -------------------------------------------------------------------------------- /static/img/services/azure-repos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/azure-repos.svg -------------------------------------------------------------------------------- /static/img/services/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/azure.svg -------------------------------------------------------------------------------- /static/img/services/bitbucket-pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/bitbucket-pipelines.png -------------------------------------------------------------------------------- /static/img/services/bitbucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/bitbucket.svg -------------------------------------------------------------------------------- /static/img/services/circleci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/circleci.svg -------------------------------------------------------------------------------- /static/img/services/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/docker.png -------------------------------------------------------------------------------- /static/img/services/env0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/env0.svg -------------------------------------------------------------------------------- /static/img/services/github-actions-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/github-actions-icon.svg -------------------------------------------------------------------------------- /static/img/services/github-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/github-actions.png -------------------------------------------------------------------------------- /static/img/services/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/github.svg -------------------------------------------------------------------------------- /static/img/services/gitlab-ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/gitlab-ci.png -------------------------------------------------------------------------------- /static/img/services/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/gitlab.svg -------------------------------------------------------------------------------- /static/img/services/google-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/google-cloud.svg -------------------------------------------------------------------------------- /static/img/services/hashicorp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/hashicorp.svg -------------------------------------------------------------------------------- /static/img/services/jenkins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/jenkins.svg -------------------------------------------------------------------------------- /static/img/services/pulumi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/pulumi.svg -------------------------------------------------------------------------------- /static/img/services/scalr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/scalr.png -------------------------------------------------------------------------------- /static/img/services/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/slack.svg -------------------------------------------------------------------------------- /static/img/services/spacelift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/spacelift.svg -------------------------------------------------------------------------------- /static/img/services/spotify-backstage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/spotify-backstage.svg -------------------------------------------------------------------------------- /static/img/services/terraform-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/terraform-cloud.svg -------------------------------------------------------------------------------- /static/img/services/terraform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/services/terraform.svg -------------------------------------------------------------------------------- /static/img/shift-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/shift-left.svg -------------------------------------------------------------------------------- /static/img/small-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/small-logo.png -------------------------------------------------------------------------------- /static/img/social-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social-image.png -------------------------------------------------------------------------------- /static/img/social/HinnerkHaardt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/HinnerkHaardt.jpg -------------------------------------------------------------------------------- /static/img/social/KeithBaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/KeithBaker.jpg -------------------------------------------------------------------------------- /static/img/social/MatthewTovbin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/MatthewTovbin.jpg -------------------------------------------------------------------------------- /static/img/social/ShabanovAlexey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/ShabanovAlexey.jpg -------------------------------------------------------------------------------- /static/img/social/ayrtonfreeman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/ayrtonfreeman.jpg -------------------------------------------------------------------------------- /static/img/social/jderusse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/social/jderusse.jpg -------------------------------------------------------------------------------- /static/img/sso/google-workspace-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/sso/google-workspace-attributes.png -------------------------------------------------------------------------------- /static/img/sso/google-workspace-service-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/sso/google-workspace-service-provider.png -------------------------------------------------------------------------------- /static/img/sso/okta-attribute-statements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/sso/okta-attribute-statements.png -------------------------------------------------------------------------------- /static/img/sso/okta-saml-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/sso/okta-saml-settings.png -------------------------------------------------------------------------------- /static/img/vscode-extension/maintf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/vscode-extension/maintf.png -------------------------------------------------------------------------------- /static/img/vscode-extension/maintf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/img/vscode-extension/maintf.webp -------------------------------------------------------------------------------- /static/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static/releases.json -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /static_src/carbon-config-screenshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infracost/docs/HEAD/static_src/carbon-config-screenshot.json --------------------------------------------------------------------------------