-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5a5b8b
commit a8ce467
Showing
18 changed files
with
33 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ Infracost has a [CLI](https://github.com/infracost/infracost) and a [Cloud Prici | |
When the CLI runs, it: | ||
|
||
1. **Extracts cost-related parameters**<br /> | ||
The CLI parses Terraform HCL code to extract only [cost-related parameters](/docs/faq#example-request), such as the instance type or disk size. | ||
The CLI parses Terraform HCL code to extract only [cost-related parameters](/docs/faq#example-request), such as the instance type or disk size. The CLI automatically discovers all projects or environment in your repo. | ||
|
||
2. **Retrieves prices from the Cloud Pricing API**<br /> | ||
The CLI retrieves prices from the Cloud Pricing API. The CLI **does not** send the Terraform plan JSON file, or any cloud credentials or secrets to the Cloud Pricing API. The API [returns the prices](/docs/faq#example-response). | ||
|
@@ -22,9 +22,7 @@ When the CLI runs, it: | |
|
||
## Security and Privacy | ||
|
||
Security is of paramount importance to us. We are SOC 2 Type II certified. Our <a href="https://www.infracost.io/security/" target="_self" rel="">Security page</a> gives an overview of the processes and systems Infracost has in place to ensure we are continually protecting our users' data. | ||
|
||
If you have any questions or concerns, please [contact us](mailto:[email protected]). | ||
Security is of paramount importance to us. We are SOC 2 Type II certified. Our <a href="https://security.infracost.io" target="_self" rel="">Trust center page</a> enables you to request details and provides an overview of the processes and systems Infracost has in place to ensure we are continually protecting our users' data. If you have any questions or concerns, please [contact us](mailto:[email protected]). | ||
|
||
### What data is sent to the Cloud Pricing API? | ||
|
||
|
@@ -109,6 +107,10 @@ Infracost provides static IPs for its Cloud Pricing API and Infracost Cloud serv | |
|
||
## Features | ||
|
||
### Which cloud providers and IaC frameworks are supported? | ||
|
||
Currently AWS, Azure and Google are supported with Terraform. | ||
|
||
### What's the difference between Infracost and Terraform Cloud's cost estimation? | ||
|
||
There are three key areas of differentiation. | ||
|
@@ -138,6 +140,10 @@ By default, Infracost parses the code to detect the instance count, thus it has | |
|
||
You can override the instance count manually in the [usage file](/docs/features/usage_based_resources/). | ||
|
||
### How do you deal with Reserved Instances and Savings Plans? | ||
|
||
See [this doc](/docs/infracost_cloud/custom_price_books/#reserved-instances-and-savings-plans) for details. | ||
|
||
### Can I show costs in a different currency? | ||
|
||
Sure! See the [currency](/docs/features/environment_variables/#infracost_currency) docs section. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,10 +27,18 @@ You can apply these discounts in Infracost Cloud: | |
|
||
## Custom price books | ||
|
||
We can also apply SKU-level custom cloud pricing to your Infracost Cloud organization. Please [contact us](mailto:[email protected]) to set this up. We would need details of the services or SKUs that you'd like to customize. | ||
We can also apply SKU-level custom cloud pricing to your Infracost Cloud organization. Please [contact us](mailto:[email protected]) to set this up. We would need details of the services or SKUs that you'd like to customize. For example, AWS customers can get this information in the Cost & Usage Reports, and Azure customers can use the [Price Sheet CSV export](https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/ea-pricing?wt.mc_id=searchAPI_azureportal_inproduct_rmskilling&sessionId=e5ed2c1e32b5482c8c7c9a1ecf3b13b2#download-pricing-for-an-enterprise-agreement). | ||
|
||
## Reserved Instances and Savings Plans | ||
|
||
For cost estimation purposes, engineers often prefer a simple price point that they can use in their calculations and when making design decisions. Reserved Instances and Savings Plans complicate this due to the dynamic nature of their discounts, which is applied after resources are launched. | ||
For cost estimation purposes, engineers often prefer a simple price point that they can use in their calculations and when making design decisions. Reserved Instances (RIs) and Savings Plans (SPs) complicate this due to the dynamic nature of their discounts, which is applied after resources are launched. Companies usually manage this by having: | ||
- Central FinOps teams often change RIs and SPs regularly to match instance usage. | ||
- Engineers compare like-for-like using on-demand prices; FinOps team ensures maximum savings of RIs/SPs; Engineers ship fast. | ||
- Engineers use consistent number & make upfront design decisions quickly. | ||
- Custom price books include main discounts already. | ||
|
||
Therefore, to simplify cost estimation for engineers, some companies prefer to use "blended rate" of resources, which combines on-demand and discounted prices into one price point. The blended rate is shown in cloud vendor Cost and Usage Reports (e.g. AWS CUR) and we can import them into your Infracost Cloud organization so they can be used instead of on-demand prices. Please [contact us](mailto:[email protected]) to setup a way for you to provide these to us. | ||
Showing engineers on-demand prices means that only the FinOps team is changing things, vs engineers also trying to second-guess the RI/SP discount allocation. | ||
|
||
However, some companies prefer to use "blended rate" of resources, which combines on-demand and discounted prices into one price point. The blended rate is shown in cloud vendor Cost and Usage Reports (e.g. AWS CUR) and we can import them into your Infracost Cloud organization so they can be used instead of on-demand prices. | ||
|
||
Please [contact us](mailto:[email protected]) to discuss what works best for your organization. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-35.2 KB
(63%)
static/img/infracost-cloud/finops-policies/pr-comment-expanded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file modified
BIN
+10.5 KB
(150%)
static/img/infracost-cloud/infracost-cloud-project-name.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+17.2 KB
(130%)
static/img/infracost-cloud/tagging-policies/pull-request-tags.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.