azure-gov

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

隐身守侯 提交于 2020-12-13 05:05:35
问题 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 tenants: oauthlib.oauth2.rfc6749.errors.InvalidClientIdError: (invalid_request) AADSTS900441: Requests to applications hosted in the public cloud are not supported for USGov tenants. Is there a way to authorize application from public azure cloud to read data from

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

↘锁芯ラ 提交于 2020-12-13 05:04:47
问题 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 tenants: oauthlib.oauth2.rfc6749.errors.InvalidClientIdError: (invalid_request) AADSTS900441: Requests to applications hosted in the public cloud are not supported for USGov tenants. Is there a way to authorize application from public azure cloud to read data from

ARM Template: Incorrect storage endpoint for AppSettings, WEBSITE_CONTENTSHARE

左心房为你撑大大i 提交于 2020-06-13 07:57:49
问题 Getting error when deploying Azure function to USGov Arizona using ARM template. Template works in Azure commercial. Error is: 12:34:11 - 12:33:27 PM - Resource Microsoft.Web/sites/config 'SFGovAppService/appsettings' failed with message '{ 12:34:11 - "Code": "BadRequest", 12:34:11 - "Message": "There was a conflict. The remote name could not be resolved: 'sftestgovstorage.file.core.windows.net'", 12:34:11 - "Target": null, 12:34:11 - "Details": [ 12:34:11 - { 12:34:11 - "Message": "There was

How to add additional claims to ID Token - Azure Government Portal

半腔热情 提交于 2019-12-13 02:43:04
问题 I'm trying to overload the OAuth ID Token by adding additional claims. I can already use the Graph API to get the claims that I need but I would like to understand if it's possible to add the additional claims directly into the ID Token? I've updated the manifest by adding the required claims in and then flipping "acceptMappedClaims" to true, however I still don't see these in the ID token. What am I missing? "optionalClaims": { "idToken": [ { "name": "employeeid", "source": "user",

Create an Azure VM with an unmanaged disk

廉价感情. 提交于 2019-12-04 01:48:54
问题 I'm trying to create an Azure VM with an unmanaged disk via PowerShell since managed disks aren't supported in Azure Government yet. None of the documentation I could find for PowerShell VM creation references managed or unmanaged disks and the default seems to be managed disks. My VM creation fails with the following error: New-AzureRmVM : Managed Disks are not supported in this region. ErrorCode: BadRequest Here's the script I'm using: $location = "USGovTexas" New-AzureRmResourceGroup -Name

Create an Azure VM with an unmanaged disk

旧巷老猫 提交于 2019-12-01 11:04:45
I'm trying to create an Azure VM with an unmanaged disk via PowerShell since managed disks aren't supported in Azure Government yet. None of the documentation I could find for PowerShell VM creation references managed or unmanaged disks and the default seems to be managed disks. My VM creation fails with the following error: New-AzureRmVM : Managed Disks are not supported in this region. ErrorCode: BadRequest Here's the script I'm using: $location = "USGovTexas" New-AzureRmResourceGroup -Name myResourceGroup -Location $location # Create a subnet configuration $subnetConfig = New