Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Report: supported regions list outdated #226

Closed
mariekekortsmit opened this issue Nov 10, 2021 · 2 comments · Fixed by #231
Closed

Bug Report: supported regions list outdated #226

mariekekortsmit opened this issue Nov 10, 2021 · 2 comments · Fixed by #231
Assignees
Labels
bug Something isn't working

Comments

@mariekekortsmit
Copy link
Contributor

It seems like the officially supported deployment regions:

  • (Asia Pacific) Japan East
  • (Europe) France Central
  • (Europe) Germany West Central
  • (US) Central US

are not an option as Azure Purview is not available in those. Or am I missing something here?

@mariekekortsmit mariekekortsmit added the bug Something isn't working label Nov 10, 2021
@marvinbuss marvinbuss linked a pull request Nov 11, 2021 that will close this issue
@marvinbuss marvinbuss reopened this Nov 15, 2021
@marvinbuss
Copy link
Collaborator

marvinbuss commented Nov 15, 2021

Hi @mariekekortsmit,
Thanks for submitting the issue. Just as mentioned by @sasever in this thread Azure/data-landing-zone#208 we do nt want to limit the user too much wrt where Enterprise-Scale Analytics is available. Therefore, we are deploying the Purview by default in North Europe as you can see here (see line 43):

var purviewRegions = [
'australiaeast'
'brazilsouth'
'canadacentral'
'centralindia'
'eastus'
'eastus2'
'northeurope'
'southcentralus'
'southeastasia'
'uksouth'
'westcentralus'
'westeurope'
'westus2'
]
// Resources
resource purview 'Microsoft.Purview/accounts@2021-07-01' = {
name: purviewName
location: contains(purviewRegions, location) ? location : 'northeurope'
tags: tags
identity: {
type: 'SystemAssigned'
}
properties: {
cloudConnectors: {}
friendlyName: purviewName
managedResourceGroupName: purviewName
publicNetworkAccess: 'Disabled'
}
}

@mariekekortsmit
Copy link
Contributor Author

Thanks for the background info! Makes sense to me :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants