Hi can anyone explain when I use an f-string with ...
# general
r
Hi can anyone explain when I use an f-string with python in pulumi I get:
:<pulumi.output.Output object at 0x000001854EFF2F88>
Copy code
config: "arn:aws:logs:eu-west-2:12345678:log-group:<pulumi.output.Output object at 0x000001854EFD6C48>:log-stream:<pulumi.output.Output object at 0x000001854EFF2F88>"
g
Yes, you need to use
.apply(..)
to manipulate outputs in that way. https://www.pulumi.com/docs/intro/concepts/programming-model/#apply
r
Thank you!