This message was deleted.
# general
b
This message was deleted.
f
infracost breakdown --path=$(TF_ROOT) configure set enable_dashboard true --show-skipped
it shows the result without the cost in ADO:
locally:
c
Hmm any change of getting debug output from ADO?
And you’re using the same Infracost API key in both?
f
it wasn't the same API key.. i just made sure they are the same and still not showing the url
c
So the actual command you are running is this?:
Copy code
infracost 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:
Copy code
infracost configure set enable_dashboard true
infracost breakdown --path=$(TF_ROOT) --show-skipped
or you can turn on the dashboard using an env variable:
Copy code
INFRACOST_ENABLE_DASHBOARD=true infracost breakdown --path=$(TF_ROOT) --show-skipped
f
it worked using the env variable
thank you
👍 1
although it is weird casue the command is working locally
c
I think the
configure 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.
👍 1
f
that is correct.. thank you ! 😄