This message was deleted.
s
This message was deleted.
c
Struggling with depoying a .NET Azure Function using the azure-native provider.
b
c
ok, I tried this, and it seemed to work.
Copy code
```Output<string> storageAccountConnectionStr = Output.Tuple(storageAccount.Name, resourceGroup.Name).Apply(t =>
{
    (string accountName, string resourceGroupName) = t;
    var keys = ListStorageAccountKeys.InvokeAsync(
        new ListStorageAccountKeysArgs
        {
            AccountName = accountName, 
            ResourceGroupName = resourceGroupName
        }).Result;
    return $"DefaultEndpointsProtocol=https;AccountName={accountName};AccountKey={keys.Keys.First()};EndpointSuffix=<http://core.windows.net|core.windows.net>";
});
before, I think the accessKeys were already available on the storageAccount