Questions tagged [azure-gov]

Use this tag for Azure questions scoped to Azure Government. The Azure Government environment is a physical instance that is separate from the rest of the Microsoft network. Use this tag for questions on the differences that application developers and administrators must understand to interact and work with this isolated Azure instance.

Azure Government

Microsoft Azure Government delivers a cloud platform built upon the foundational principles of security, privacy and control, compliance, and transparency. Public Sector entities receive a physically isolated instance of Microsoft Azure that employs world-class security and compliance services critical to U.S. government for all systems and applications built on its architecture.

Generally speaking, developing for Azure Government should be very similar to developing for regular Azure, however there are a few things to keep in mind such as:

For more information check out the Azure Government Developer's Guide

89 questions
2
votes
2 answers

Error when trying with Azure Government endpoint with Azure Storage Java Library

I am trying to use the Azure Storage Java library with the Azure Government endpoints. My code is as follows. CloudStorageAccount account = CloudStorageAccount.parse(connectionString); connectionString has the suffix of Azure Gov cloud. For some…
nwarriorch
  • 337
  • 6
  • 16
1
vote
2 answers

Service Fabric .NET Framework services and ApplicationInsights.config endpoints for Azure gov

I have a service fabric application that hosts api’s with app insights enabled. The api services are .Net framework 4.8 webapi projects and they are native fabric stateless and stateful services. I don’t use the app insights service fabric specific…
Josh
  • 1,648
  • 8
  • 27
  • 58
1
vote
1 answer

Connect Terraform To Azure Gov

So I am trying to connect Terraform to Azure Gov but it seems like the environment in the code is not being read. Or I am just way off with this any help will be greatly appreciated. Here is the code, very basic just trying to get it to connect and…
1
vote
1 answer

I need reource code of main.iam.ad.ext.azure.us

I need to collect information about total and assigned licenses programmatically. The way that is described here: https://tech.nicolonsky.ch/manage-azure-ad-group-based-licensing-with-powershell/ - does not work on AzureUSGovernment environment. The…
Anna
  • 11
  • 2
1
vote
1 answer

How to test Azure AD in Azure government?

I want to test some Azure AD features on Azure US government, but I don't know how. For normal azure active directory, I would go to demo.microsoft.com and create a tenant. There, the only government related option is "World Wide Government" but…
Ashkan S
  • 10,464
  • 6
  • 51
  • 80
1
vote
1 answer

Azure LinkedAuthorizationFailed on Active Directory Account / Key Vault Authentication when running DevOps Server Deployment Template

I am trying to deploy an on-prem instance of Azure DevOps Server to a VM in an Azure Government subscription (which by nature, seems it does not support standard DevOps). This template is referenced within support material directly from…
1
vote
1 answer

Can application in public cloud be authorized to fetch data from government tenant via graph api?

I'm trying to fetch email list from government tenant via graph api and it worked fine until last week. I'm using client credentials flow. Last week i started to get the following error when trying to authorize my app in government…
Novarg
  • 253
  • 2
  • 17
1
vote
1 answer

Can we create SaaS offers for Azure Gov

Can we publish a SaaS offering in Partner Center? I dont see an option when creating an offer. Any update on this would be much helpful.
s-a-n
  • 767
  • 2
  • 9
  • 27
1
vote
1 answer

Unable to discover Azure resources using ResourceManagementClient class from Microsoft.Azure.Management.ResourceManager.Fluent namespace

I am trying to discover Azure Government resources using below code snippet from .NET SDK class ResourceManagementClient under Microsoft.Azure.Management.ResourceManager.Fluent namespace new…
1
vote
1 answer

TLS for Azure storage in government cloud

Based on current documentation Azure storage REST API supports TLS 1.0, 1.1 and 1.2. Question: Is this the same for Azure Government cloud? Some certifications don't allow TLS 1.0 anymore, is there a way to mitigate it at least in Government Cloud?
Maxim Alexeyev
  • 1,021
  • 11
  • 24
1
vote
3 answers

Set-AzureRmResource throwing api-version error

I am trying to programmatically add tags to resources in Azure Government. When I try to set the tags on a resource that has no tags I am using the Set-AzureRmResource command. I have tried both setting the ApiVersion and without (without is…
Darroll
  • 438
  • 4
  • 10
1
vote
1 answer

Is there a way to know which aad to use for authenticating in advance?

I have a UWP app that needs to authenticate, and I would like to avoid asking the user to choose which national cloud to authenticate with. I could just try them all, but I hope there is a better way to tell which Azure Active Directory the user…
shoren
  • 931
  • 8
  • 20
1
vote
1 answer

Does the Azure AD audit log API work for Azure US Government tenants?

I cannot retrieve any signIn data from our Azure US Gov tenant with the following Powershell: $ClientID = "" $ClientSecret = "" $loginURL = "https://login.microsoftonline.us" $tenantdomain = "" $scope =…
1
vote
1 answer

When will managed container services (AKS) be available on Azure Government?

This article from January 2018 states that AKS will be coming to Azure Government soon. Do we know of a target delivery date? An older post references a target of Q3, but the newer post was more vague.
Rob Oesch
  • 21
  • 3
1
vote
1 answer

Is the V2 authorization endpoint fully implemented in Azure Government?

I am using MSAL.JS to attempt to acquire a token within a single-page application (SPA). This is the authority URI that we are seeing in the traces: https://login.microsoftonline.us/organizations/v2.0/.well-known/openid-configuration This…
MaxV
  • 56
  • 2