broad-zoo-34077
07/20/2022, 8:55 AMmysterious-teacher-68276
07/20/2022, 8:56 AMmysterious-teacher-68276
07/20/2022, 9:02 AMinfracost breakdown
has a --terraform-workspace
flag to let you specify a workspace. So in your case it would be something like:
infracost breakdown --path path/to/code --terraform-workspace dev --out-file past.json --format json
// checkout pr branch
infracost diff --path path/to/code --terraform-workspace dev --compare-to past.json
2. you can define a config file which allows you to specify all your workspaces for a given project, e.g:
version: 0.1
projects:
- path: path/to/code
terraform_workspace: dev
- path: path/to/code
terraform_workspace: prod
you’d then run this as follows:
infracost breakdown --config-file infracost.yml --out-file past.json --format json
// checkout pr branch
infracost diff --config-file infracost.yml --compare-to past.json
you can find out more about config files herekind-angle-62935
07/20/2022, 9:03 AM--terraform-workspace
flag probably works best for my usecasemysterious-teacher-68276
07/20/2022, 9:03 AMkind-angle-62935
07/20/2022, 9:03 AMterraform init
is necessary prior to doing any infracost operation?mysterious-teacher-68276
07/20/2022, 9:03 AMmysterious-teacher-68276
07/20/2022, 9:04 AMand to clarify, nocorrectis necessary prior to doing any infracost operation?terraform init
kind-angle-62935
07/20/2022, 9:07 AMkind-angle-62935
07/20/2022, 9:07 AMmysterious-teacher-68276
07/20/2022, 9:10 AMcompare-to
, e.g:
terraform plan -out tfplan.binary
terraform show -json tfplan.binary > plan.json
# will show you the snapshot of costs introduced in this change
infracost breakdown --path plan.json
# will show you the diff in costs that this change introduces
infracost diff --path plan.json
kind-angle-62935
07/20/2022, 9:18 AMcareful-energy-60374
07/20/2022, 9:18 AMmysterious-teacher-68276
07/20/2022, 9:19 AMkind-angle-62935
07/20/2022, 9:27 AMmysterious-teacher-68276
07/20/2022, 9:28 AMkind-angle-62935
07/20/2022, 9:29 AMmysterious-teacher-68276
07/20/2022, 9:29 AMkind-angle-62935
07/20/2022, 9:29 AMmysterious-teacher-68276
07/20/2022, 9:29 AMkind-angle-62935
07/20/2022, 9:31 AM