ContainerSolutions / externalsecret-operator

An operator to fetch secrets from cloud services and inject them in Kubernetes
Apache License 2.0
189 stars 28 forks source link

Azure offers different endpoints to access vault #155

Open sebagomez opened 3 years ago

sebagomez commented 3 years ago

Right now the url to access the vault is concatenated with a fixed string template: fmt.Sprintf("https://%s.vault.azure.net", a.keyvault)

That url is actually different depending on the Access plane (Global, Azure China 21Vianet, Azure US Government & Azure Germany).

There should be a way of configuring that url instead of having the fixed one hard coded.