This message was deleted.
# python
s
This message was deleted.
w
I think the call to
list_storage_account_keys
needs to specify the property names and not just the values. So something like this:
Copy code
storageAccountKeys = pulumi.Output.all(resource_group.name, account.name).apply(
        lambda args: storage.list_storage_account_keys(resource_group_name: args[0], account_name: args[1]))
h
So close and yet so far away. Thank you Mitch that works!!