Anybody know what this is supposed to mean? ```err...
# azure
c
Anybody know what this is supposed to mean?
Copy code
error: 1 error occurred:
      	* building account: getting authenticated object ID: listing Service Principals: autorest.DetailedError{Original:(*azure.RequestError)(0xc001462510), PackageType:"graphrbac.ServicePrincipalsClient", Method:"List", StatusCode:403, Message:"Failure responding to request", ServiceError:[]uint8(nil), Response:(*http.Response)(0xc001462480)}
This started happening today out of the blue. It happens on our preview GitHub Action that uses an Entra ID App with client ID and secret. We haven't moved this to OIDC yet.
package.json
(yes, some old packages)
Copy code
{
  "name": "argos-infra",
  "devDependencies": {
    "@types/glob": "^7.1.3",
    "@types/node": "^10.17.28"
  },
  "dependencies": {
    "@pulumi/azure": "4.42.0",
    "@pulumi/azure-native": "2.90.0",
    "@pulumi/pulumi": "3.171.0",
    "@pulumi/random": "^4.3.0",
    "glob": "^7.1.6",
    "typescript": "^5.3.3"
  }
}
In the same output I also have this here:
Copy code
warning: refresh operation is using an older version of package 'azure' than the specified program version: 4.30.0 < 4.42.0
      warning: refresh operation is using an older version of package 'azure-native' than the specified program version: 2.51.0 < 2.90.0
update, apparently someone imported the following resource into state and reran the pipeline:
azure:cosmosdb:SqlContainer
Now we have that 403 error.
if I manually remove that resource from the state and the code again, all is back to normal. This just doesn't make any sense. The code has other SqlContainer resources for the same CosmosDb database and they work fine.