broad-zoo-34077
08/09/2022, 3:08 PMfew-father-18060
08/09/2022, 3:08 PMfew-father-18060
08/09/2022, 3:09 PMfew-father-18060
08/09/2022, 3:09 PMcrooked-daybreak-55253
08/09/2022, 3:16 PMcrooked-daybreak-55253
08/09/2022, 3:16 PMfew-father-18060
08/09/2022, 3:19 PMcrooked-daybreak-55253
08/09/2022, 3:37 PMinfracost breakdown --path=$(TF_ROOT) configure set enable_dashboard true --show-skipped
I think the configure set enabled_dashboard true
is being ignored because we don’t support multiple commands like that (i’m surprised it doesn’t error though).
Try setting it as two separate commands:
infracost configure set enable_dashboard true
infracost breakdown --path=$(TF_ROOT) --show-skipped
or you can turn on the dashboard using an env variable:
INFRACOST_ENABLE_DASHBOARD=true infracost breakdown --path=$(TF_ROOT) --show-skipped
few-father-18060
08/09/2022, 3:40 PMfew-father-18060
08/09/2022, 3:40 PMfew-father-18060
08/09/2022, 3:40 PMcrooked-daybreak-55253
08/09/2022, 3:42 PMconfigure set enable_dashboard true
is being ignored completely. So if locally you disable the setting by running infracost configure set enabled_dashboard false
, then try your command I think it will not show the share links.few-father-18060
08/09/2022, 3:43 PM