Hello, working on creating a SAS token for my Azur...
# azure
a
Hello, working on creating a SAS token for my Azure storage and using:
Copy code
deployment_resources_container_sas = storage.list_storage_account_sas(
    account_name=storage_account.name,
    resource_group_name=resource_group,
...
However, account_name only excepts str | none. Is that a bug? Certainly, you would want to know that the storage account needs to be available first in the Pulumi background orchestration. Anyone else run into this? How did you get around it? Thanks.