How can i concatenate strings when using `pulumi.o...
# python
b
How can i concatenate strings when using
pulumi.output.json_dumps
?
b
use
pulumi.Output.format
or
pulumi.Output.concat
pulumi.Output.concat(logs_bucket.arn, "/*")
b
what is the difference?
b
same difference as the
format
and f string implementation in python 🙂
b
:)
thanks!
can you provide an example with
format
please?
b
Copy code
pulumi.Output.format("{0}-{1}", name, args.container_name)