skip to Main Content

PowerShell Azure Function import module error

I am trying to import the "Microsoft.PowerApps.Administration.PowerShell" module in my PowerShell Azure Function App. The import is successful but the following command in my "run.ps1" file is throwing an error: Add-PowerAppsAccount -Username $username -Password $pass Following are the contents of…

VIEW QUESTION

Azure – terraform – Failure sending request: StatusCode=400 — Original Error: Code="InvalidResourceReference"

I'm trying to upload the .cer certificate to the backend settings of the App Gw using the below code: data "azurerm_key_vault_secret" "intdev-api-cer" { name = "intdev-api-cer" key_vault_id = data.azurerm_key_vault.nw-kv-ie1.id } data "azurerm_key_vault_certificate" "intdev-api" { name = "intdev-api" key_vault_id = data.azurerm_key_vault.nw-kv-ie1.id…

VIEW QUESTION
Back To Top
Search