This message was deleted.
# general
s
This message was deleted.
i
ok, I will give you expanded examlpe, i think something wrong here:
Copy code
pulumi.export('source', f"abfss://{container.name.apply(lambda n: n)}@{storage_account.name.apply(lambda n: n)}.<http://dfs.core.windows.net/%22|dfs.core.windows.net/">)
if someone will get this issue 🙂 Google was giving me Issues about Output type and not this doc
Copy code
pulumi.export(
    'source', pulumi.Output.all(container.name, storage_account.name).apply(
        lambda l: f"abfss://{l[0]}@{l[1]}.<http://dfs.core.windows.net/%22))|dfs.core.windows.net/"))>
w
Btw - this particular example is a great use case or Output.concat - from just a little further down in the docs you linked:
Copy code
# concat takes a list of args and concatenates all of them into a single output:
url = Output.concat("http://", hostname, ":", port, "/")
i
yea, I saw it. @white-balloon-205 🙂 not sure I liked the syntax
👍 2