I am getting the below error from an API I have not changed since September, 2017. I have not run any pipelines for it in AzureDevOps since that time. It is hosted on prem in IIS and I keep the code in AzureDevOps. There is also an AzureAD that I use for authentication for the app that this API is consumed in, if that matters.
AADSTS7000222: InvalidClientSecretExpiredKeysProvided - The provided client secret keys are expired. Visit the Azure portal to create new keys for your app, or consider using certificate credentials for added security: https://aka.ms/certCreds
This is an aspnetcore app. From my project.json:
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
}
},
In the config.json file there is a clientSecret:
value and clientId:
- I am assuming I need to update the secret value...but I am not really sure what is actually corresponds to? I have looked through AzureAD in my organization where this client secret is configured but cannot find it anywhere. I am also looked in the associated pipeline but see no reference to it either.
What do I do?