The implementation of <listStorageAccountSAS> seem...
# azure
m
The implementation of listStorageAccountSAS seems.... not great. Things like resource group and storage account name are strings rather than Input<string> and if you use the Enum types for permissions etc. you can only specify 1, because again their strings. Is this going to be improved?
g
Yeap, same for "getRegistryCredentials", "listManagedClusterUserCredentials", and other functions... Have to do some weird magic to use them
pulumi.all([registry.name, resourceGroup.name]).apply(([registryName, rgName]) => {
(if anyone have a better way I take it directly 😅)
f