Pinned Posts
Forum Widgets
Latest Discussions
ExpressRoute Gateway routing changes
I have an ExpressRoute Gateway that shows some route changes in the metrics. I'd like to see what routes changed, but I can't find them. I tried the "BGP route updates" query under Monitoring > Logs. However, it says "No results found from the specified time range." I am in the right time range. Can I see what routes changed another way? Should I be able to view the route changes the way that I was trying?franklin19cJul 08, 2025Copper Contributor32Views0likes2CommentsWorkspace failure
Hi Community, I had my Databricks workspace up and running and it was managed through terraform, and encryption was enabled through cmk, there were some updation in the code, so I put terraform plan, one of the key changes(replace) it showed me was "azurerm_role_assignment.storage_identity_kv_access module.workspace.azurerm_role_assignment.storage_identity_kv_access" the terraform run was running for 30 min, and the workspace was in deployment for long time and then ultimately got failed. Again, as all the changes were not done, I reapplied, and I got this error "Performing CreateOrUpdate: unexpected status 400 (400 Bad Request ) With error: InvalidEncryptionConfiguration: Configure encryption for workspace at creation is not allowed, configure encryption once workspace is created and key vault access policies are added" Again, I applied and everything and terraform run succeeded but I can see in azure portal that workspace is in failed state, but if I go to Databricks account I can see Databricks as running and if I go to workspace, I am able to start clusters and execute some queries. I am not able to launch the workspace using azure portal, not sure there will be other issues due to this. Could anyone help me to resolve this issue. Let me know if you need anything further to investigate the issue.sumitkumar49Jul 08, 2025Occasional Reader21Views0likes0Comments"Invalid JWT Error When Sending Messages from Azure Bot to Skype User
I'm encountering an "Invalid JWT" error when trying to send a non-reply message from an Azure Bot to a Skype user, despite using what appears to be a valid token. Here's a breakdown of my setup: I successfully generate an access token using OAuth client credentials for the Microsoft Bot Framework. I create a conversation ID successfully, but when I attempt to send a message using this ID, I receive a 401 error with "Invalid JWT." Here is the relevant part of my code: import requests # Setup for token generation service_url = "https://smba.trafficmanager.net/apis" token_url = f'https://login.microsoftonline.com/{tenantId}/oauth2/v2.0/token' token_headers = {'Content-Type': 'application/x-www-form-urlencoded'} token_payload = { 'grant_type': 'client_credentials', 'client_id': app_id, 'client_secret': app_password, 'scope': 'https://api.botframework.com/.default' } # Token request token_response = requests.post(token_url, headers=token_headers, data=token_payload) token = token_response.json()['access_token'] # Setup for creating a conversation conversation_headers = {'Authorization': f'Bearer {token}', 'Content-Type': 'application/json'} conversation_url = f"{service_url}/v3/conversations" conversation_payload = { "bot": {"id": f"28:{app_id}", "name": "botname"}, "isGroup": False, "members": [{"id": skype_id, "name": "Milkiyas Gebru"}], "topicName": "New Conversation" } conversation_response = requests.post(conversation_url, headers=conversation_headers, json=conversation_payload) conversation_id = conversation_response.json()["id"] # Setup for sending a message message_url = f"{service_url}/v3/conversations/{conversation_id}/activities" message_headers = {'Authorization': f'Bearer {token}', 'Content-Type': 'application/json'} message_payload = {"type": "message", "text": "My bots reply"} message_response = requests.post(message_url, headers=message_headers, json=message_payload) print("Create Message Response: ", message_response.json(), message_response.status_code) The response I get indicates an authorization error: Create Message Response: {'error': {'code': 'AuthorizationError', 'message': 'Invalid JWT.'}} 401 Has anyone experienced this issue before, or does anyone know what might be causing the JWT to be considered invalid? Any insights or suggestions would be greatly appreciated!MilkiyasHolitechJul 08, 2025Copper Contributor616Views0likes1CommentSSL certificate problem while doing GIT pull from Azure Devops Repos
We are using a proxy server that does SSL inspection of traffic and thus replaces the cert with the one that it issues in the process. That cert is issued by the cert authority on the proxy itself. This is fairly common with modern proxies. But users are getting following error while doing Git pull:- "git pull fatal: unable to access 'https://ausgov.visualstudio.com/Project/_git/Repo': SSL Certificate problem: self-signed certificate in certificate chain" Do I need to import the proxy CA issuing cert in Devops portal somewhere to resolve this or does the SSL inspection needs to be removed? Has anybody got it to work with proxy inspection still turned on?curious7Jul 07, 2025Copper Contributor2Views0likes0CommentsSSL certificate problem while doing GIT pull from Azure Devops Repos
We are using a proxy server that does SSL inspection of traffic and thus replaces the cert with the one that it issues in the process. That cert is issued by the cert authority on the proxy itself. This is fairly common with modern proxies. But users are getting following error while doing Git pull:- "git pull fatal: unable to access 'https://ausgov.visualstudio.com/Project/_git/Repo': SSL Certificate problem: self-signed certificate in certificate chain" Do I need to import the proxy CA issuing cert in Devops portal somewhere to resolve this or does the SSL inspection needs to be removed? Has anybody got it to work with proxy inspection still turned on?curious7Jul 07, 2025Copper Contributor9Views0likes0CommentsHow to revert back WorkItems' old component after changing them to new component
I mistakenly changed the components of different areas to a single component. I created a query for components without realizing that there was a mistake in the query and changed the components of all the areas to a single component. Because of this 13K worktimes got updated. It is not possible to change each item manually. Is there any way to restore the old components of those work items? I explored the APIs which return the list of all the work items in the query. Also, I explored the API which retrieves the information for old and new component values. I am not sure how can I change back to the values of the old components for all 13K work items. Get work item history API: https://dev.azure.com/astera/Centerprise/_apis/wit/workItems/{id}/updates?api-version=5.1 Get work item ids from query: https://dev.azure.com/astera/Centerprise/_apis/wit/wiql/{queryid}?api-version=6.0Abdul_ur_RehmanJul 07, 2025Copper Contributor697Views0likes1CommentIntegration between Asana and Microsoft SQL Servers using Microsoft Azure DevOps?
Hi, I work for a bespoke kitchen company. We currently are using SQL Servers (on-premise). A lot of our software is integrated whereby any data input onto one system, would update on our other systems. We have recently started using Asana which is not integrated into our SQL Servers. According to the Asana website, it can integrate with Microsoft Azure. We have been advised by an external party to use Microsoft Azure 'DevOps' to achieve this. Is this possible to do and if so, what are the steps required to do this? Kind regards, Will KoWill_KoJul 06, 2025Copper Contributor1.2KViews0likes2CommentsFunction App access restrictions preventing ADO cloud Pipeline to Government tenant from succeeding
Hi there, I'm running into an access restrictions issue with Function App on our Gov tenant thats preventing the deployment from succeeding from our commercial cloud ADO. It seems that ADO cloud and / or the agents IP's need to be defined in the function app access restrictions, but unclear where to gather that IP info, or add an additional task on the release side. I read some other forums that reflected that noted the AgentCloud service tag should suffice, however that doesn't work either. Our service connection deploys app service code to the same RG the function app resides in just fine. Any feedback how solve this issue is greatly appreciated.DrueMJul 06, 2025Copper Contributor477Views0likes1CommentSync 2 Git repos
I cloned a month ago a Github public repo directly into a new private Azure DevOps repo, by using https://learn.microsoft.com/en-us/azure/devops/repos/git/import-git-repository?view=azure-devops , because we are implementing new software which is hosted in a Github public repo. The reason for saving the code also in ADO is since we have few parameter files that we need to modify. After this original clone directly from GitHub to ADO, I cloned locally on my laptop and created a new branch for DEV based on main, by adding one commit that contain 4 yaml files : 2 new parameter files and 2 updated files. Then pushed DEV branch to ADO. git clone https://ContosoOrg/Project/_git/RepoName git switch main git checkout -b DEV #add 2 new yaml files and update 2 files Git add . Git commit -m “Added and Updated Config files” Git remote add github https://github.com/Software/Project.git git push -u origin DEV In the meantime in Github there were 4 additional commits on the main. I need to update both the main and DEV branches in ADO based on Github main branch changes, now and in future for any further Github new commits. I am fairly new to Git but reviewed the documentation in depth. My question is can you please check following steps and let me know if make sense to you, or you see an issue. git fetch github git switch main git rebase github/main git push -u origin main git switch DEV git rebase github/main git push -u origin DEVdrhorg2230Jul 05, 2025Copper Contributor420Views0likes1Comment
Resources
Tags
- azure2,278 Topics
- azure devops1,392 Topics
- Data & Storage379 Topics
- Networking240 Topics
- Azure Friday223 Topics
- App Services203 Topics
- blockchain168 Topics
- devops168 Topics
- Security & Compliance151 Topics
- analytics136 Topics