This message was deleted.
# azure
s
This message was deleted.
g
No, I don't believe you can. The resource group name is even required for doing a lookup.
r
hmm, that's unlucky.. we are doing it quite often with original provider 😞
but i guess i can derivate it from id
g
Can you share how you were doing it with the original provider? I wasn't aware you could do it there either.
r
sure
Copy code
const newStorage = new azure.storage.Account("newstorage", {
    accountReplicationType: "LRS",
    accountTier: "Standard",
    name: "newstorage",
    resourceGroupName: "r669-resourceGroup",
})
newStorage.resourceGroupName.apply(rg => console.log("resourcegroupname", rg))