Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have found service bus explorer a windows application which will allow me to connect to the Azure Service Bus and look at my topics and subscription and the messages on the subscriptions. I need to be able to do this from my mac as I am developing connectivity to the service bus and need to be able to look at the messages on the subscription to see why they are not being processed etc.
I would have thought that the az cli would be useful to do this but I cannot see any az service bus options as of yet. If anyone knows of a service bus explorer equivalent for the mac that would be greatly appreciative otherwise if anyone has any other ways of me be able to look at the actual message on the subscription that would be great.
You can use Cerulean, which is a cross-platform product from Cerebrata.
Today, Cerulean enables you to manage your Azure Subscriptions, Azure Storage accounts, Azure Cosmos DB accounts, Azure Redis Cache accounts, Azure Service Bus accounts, and Azure Search accounts. Support for more Azure services will be added soon. It is highly customizable.
Unfortunately it's not free though. Costs roughly 10$ per month at the time of this writing.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 months ago.
Improve this question
I am in an organization on azure with the following roles:
Another member with the same roles created an azure VM that I can not see in my virtual machine interface. It always takes me to this window whenever I search Virtual Machine.
When I access the link shared by the other person to access the page, it will lead me to this error page:
Having the role of Global admin, should not I be able to access everything in the organization setup?
This is the current license of the organization
Note that, Azure AD roles are different from Azure RBAC roles.
You have Azure AD roles that will only help you to manage Azure AD resources like users, groups, applications etc., and won't give access for Azure resources.
To manage Azure resources like virtual machines, storage accounts etc., you need Azure RBAC roles that links with subscription.
I tried to reproduce the same in my environment and got below results:
I created one Azure AD user named Test user and assigned same roles as you like below:
When I signed in with above Test user account, I got the same screen as you like below:
I got the same error as you when I tried to access virtual machine like below:
You can check with other members what Azure RBAC role they have under virtual machine as below:
To resolve the error, get yourself assigned with the same RBAC role the other member has, under your subscription like below:
After getting that role, you can access the virtual machine successfully like below:
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 months ago.
Improve this question
I am trying to implement azure cloud services extended support thorugh terraform.
I have checked the official documentation and did not find any existing code to implement it.
Can you check to let me know if it possible to implement it through terraform
I also Search for that there is no document to create Azure Cloud Service (Extended Support) using terraform.
Cloud Services (extended support) is a new Azure Resource Manager
(ARM) based deployment model for Azure Cloud Services. Azure Cloud
Services is a platform as a service (PaaS) offering that allows you to
quickly deploy and manage powerful applications and services. It
manages provisioning, load balancing, and health monitoring.
This is new Service in Azure so this might be the reason I think currently azurerm terraform does not cover extended version of Cloud Service feature. You can raise a discussion in Github for the same request.
https://github.com/hashicorp/terraform-provider-azurerm/issues/11234
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I am trying to connect Azure DevOps with Azure KeyVault by whitelisting the IP addresses of Azure DevOps into the key vault. Now I need to add the service tag of Azure DevOps into KeyVault. I am following the below process to do it. Please correct me if I am wrong?
Create a Network Security Group
Click on Inbound security rules
Click on Add button to add a rule
Select Source as “Service Tag”
Select the Souce service tag as “AzureDevOps” (unfortunately this tag is not available).
Please let me know how can I add the Service Tag of Azure DevOps in the Network security group and map the Network Security Group with Azure Key Vault?
As of today they are available on the Portal (18-11-2021)
Original reply
You can't. Azure Devops Service Tag is not available from the Portal
Info taken from documentation.
Now that a service tag has been set up for Azure DevOps Services, customers can easily allow access by adding the tag name AzureDevOps to their NSGs or firewalls programmatically using Powershell and CLI.
Here os the info on the blog.
And what is important here is:
The Service Tag does not apply to Microsoft Hosted Agents. Customers are still required to allow the entire geography for the Microsoft Hosted Agents. If allowing the entire geography is a concern, we recommend using the Azure Virtual Machine Scale Set Agents. The Scale Set Agents are a form of self-hosted agents that can be autoscaled to meet your demands.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have set up Azure API management in front of the Azure kubernetes application APIs and would like to place Azure App Gateway in front of the Azure API management, how would I do this?
You could refer to this doc - https://learn.microsoft.com/en-us/azure/api-management/api-management-howto-integrate-internal-vnet-appgateway
This article covers how to use a single API Management service for both internal and external consumers and make it act as a single frontend for both on premises and cloud APIs. You will also see how to expose only a subset of your APIs (in the example they are highlighted in green) for External Consumption using routing functionality available in Application Gateway.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
Microsoft strongly recommend to use Microsoft Graph instead of Azure AD Graph API to access Azure Active Directory resources
There are a very limited number of scenarios for which Azure AD Graph API might still be appropriate according to this post written in 2017 May.those Gaps between Microsoft Graph and Azure AD Graph still exist ?
Yes.
For example Applications and Service principals are only available on the beta endpoint for MS Graph API.
And the beta endpoint is not recommended to be used in production applications.
So if you need to make automation related to app registrations, permissions etc., AAD Graph is still the way to do it safely.