i'm doing a `pulumi.interpolate` on a string, and ...
# general
b
i'm doing a
pulumi.interpolate
on a string, and in the preview it showed the full string with
[secret]
where a variable would be, which was declared with
config.requireSecret
. then i decided to manually mark another interpolated variable (of type
pulumi.Output<string>
) as secret with
pulumi.secret(variable)
. that caused the entire string to become
[secret]
, so i don't get to see my config string with only the secret bits blacked out. is there a way to have that happen?