stale-insurance-9177
05/15/2020, 3:49 PMlet keyVault = vznaz.azure.keyvault.getKeyVault({ name: "kv-dp-test",
resourceGroupName: resourcegroupName
})
let storage = vznaz.azure.storage.getAccount({ name: "storagedptest",
resourceGroupName: resourcegroupName
})
let dataFactory = vznaz.azure.datafactory.getFactory({name: "adf-dp-test",
resourceGroupName: resourcegroupName
})
export const test = "key vault name is:" + keyVault.vaultUri;
export const test2 = "factory name is:" + dataFactory.id ;
export const test3 = "storage host endpoint is" + storage.primaryBlobHost;
Outputs:
test : "key vault name is:<https://kv-dp-test.vault.azure.net/>"
test2: "factory name is:undefined"
test3: "storage host endpoint <http://isstoragedptest.blob.core.windows.net|isstoragedptest.blob.core.windows.net>"
There is no output for the Data Factory id! I have triple checked the name of the resource, resource group and that it exists. Any ideas what is happening?tall-librarian-49374
05/15/2020, 3:59 PMstale-insurance-9177
05/15/2020, 4:10 PMtall-librarian-49374
05/15/2020, 4:29 PM@pulumi/azure
version are you on?stale-insurance-9177
05/18/2020, 4:14 PMtall-librarian-49374
05/18/2020, 6:54 PM