You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
When explicitly setting the endpoint url in Vagrantfile
Vagrant.configure('2') do |config|
config.vm.box = 'azure'
config.vm.provider :azure do |azure, override|
azure.endpoint = 'https://management.microsoftazure.de'
...
end
end
the configured value is not propagated to the clients (ComputeManagementClient, ResourceManagementClient, ...), because it is not set in the ConnectAzure class:
will set the fallback url and not the configured endpoint url.
Current impact is, that you cannot use the azure provider for AzureGermanCloud or AzureChinaCloud because the fallback url is used and not the configured endpoint url.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When explicitly setting the endpoint url in Vagrantfile
the configured value is not propagated to the clients (
ComputeManagementClient
,ResourceManagementClient
, ...), because it is not set in theConnectAzure
class:action/connect_azure.rb
The endpoint needs to be provided as third parameter to the initializer of
AzureResourceManager
:, otherwise the base_url will always be nil and
will set the fallback url and not the configured endpoint url.
Current impact is, that you cannot use the azure provider for AzureGermanCloud or AzureChinaCloud because the fallback url is used and not the configured endpoint url.
The text was updated successfully, but these errors were encountered: