Another weird issue from Pulumi actions ( I try to...
# pulumi-deployments
f
Another weird issue from Pulumi actions ( I try to fix a simple issue and run into more complicated ones). Why is LB dns from AWS is censored here? can someone help with this please? Am new to Pulumi, but maybe that was a wrong choice and should get back to AWS CDK 🤷‍♂️
l
Are you building that output string from a secret? Pulumi will do its best to obfuscate anything that it thinks is a secret.
f
just found that this was related to Github actions censoring the dnsName cause it contains AWS_REIGON which is stored as a secret. I find this ultra stupid, but now I can find a solution. Thanks for responding @little-cartoon-10569
l
It'd be worse if it didn't censor it in those cases where it's necessary! You don't need to make a workaround: you can mark your output as not-a-secret explicitly, and it'll ignore that rule.
f
I am not sure if Github actions was censoring, or Pulumi, but anyway that is super informative. Thanks again