This message was deleted.
s
This message was deleted.
e
e
For example:
Copy code
certState.getOutput("certificate_p12") as pulumi.Output<Secret>
That does not work... Type 'Output<Secret>' is not assignable to type 'Input<string>'.
e
pulumi.secret(certState.getOutput("certificate_p12"))
e
Wow... I feel like a noob! Thank you so much!!
e
n/p 🙂
e
@echoing-dinner-19531 The first block of code for terraform.state.RemoteStateReference was still producing plaintext output, even after we resolved it for the second block with your recommendation. I found that adding
Copy code
additionalSecretOutputs: ["outputs"]
to the first block resolved it there too.
🙌 1