skip to Main Content

Azure bicep dependsOn for existing resource

From my "main" bicep module, I would like to reference an existing function that is created by a module called from the same "main" bicep. So used the following code: resource functionApp 'Microsoft.Web/sites@2021-02-01' existing = { name: functionAppName scope: resourceGroup(subscriptionId,…

VIEW QUESTION

Azure – ERROR 'ClientSecretCredential' object has no attribute 'signed_session'

I was trying to collect the List of Deny Assignments present in a particular tenant, so I passed the required arguments here: tenant_id = arguments['tenant_id'] client_id = arguments['client_id'] client_secret = arguments['client_secret'] I created ClientSecretCredentials here: csc = ClientSecretCredential(tenant_id=tenant_id, client_id=client_id, client_secret=client_secret)…

VIEW QUESTION
Back To Top
Search