Hello How do I upload a blob to a storage account ...
# general
p
Hello How do I upload a blob to a storage account container with Pulumi? I can't see a
folder
option for blob My code looks like this
Copy code
const myBlob = new azure.storage.Blob("blob-name", {
    source: "my-path",
    storageAccountName: "storage-aac-name",
    storageContainerName: "container-name",
    type: "Block",
    name: "blob-name",
    contentType: "text/plain"
})