skip to Main Content

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

Ubuntu – Job is not run after Manual Validation

The scenario: If "doSomething" fails then "waitforValidation" must run. After succeful validation then "doSomethingAfterValidation" must run. But currently after succesful validation "doSomethingAfterValidation" is simply Skipped. If I remove "condition: failed()" and make "doSomething" succeed there is no problem. Tried playing…

VIEW QUESTION
Back To Top
Search