This message was deleted.
# general
s
This message was deleted.
l
You want
pulumi stack output --show-secrets
a
No, I want to show the secrets when doing a
pulumi pre --diff
or
pulumi up --diff
, to be able to compare changes of attributes that are marked as secret.
l
🤔
a
My use case is related to ECS. The whole container definition is marked as secret, so I can't see what the new update is going to do:
Copy code
+-aws:ecs/taskDefinition:TaskDefinition: (replace)
      ...
      ~ containerDefinitions: "[secret]" => "[secret]"
l
I think there isn't.. you'd have to display the decrypted values yourself, inside an
apply()
.
Copy code
secretValue.apply(value => <http://pulumi.log.info|pulumi.log.info>(`Secret value: ${value}`));
I can't think of another way to do it.