Is there a plan or an alternative to TS `pulumi.in...
# python
g
Is there a plan or an alternative to TS
pulumi.interpolate
in python?
m
b
https://www.pulumi.com/docs/intro/concepts/inputs-outputs/#outputs-and-strings if you switch the picker to python here, it shows you this
g
yeah I know there is
concat
I'm wondering if I could use a native functionality with
f-strings
or
str.format
instead of that
or is it OK to pass something like this:
Copy code
Output.concat(f"http://{hostname}:{port}/")
I'm not sure it does work this way, right?
b
yes it works that way