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 was archived by the owner on Jan 30, 2021. It is now read-only.
I seem to be stuck waiting for WinRM. I'm pretty confident that this isn't a networking issue my end or in Azure as I've been building Packer images in the same subscription.
Can anyone help with this?
OS is OS X 10.15.2
Vagrant 2.2.5
Vagrant.configure('2') do |config|
config.vm.box = 'azure'
config.vm.provider :azure do |azure, override|
# each of the below values will default to use the env vars named as below if not specified explicitly
azure.tenant_id = ENV['TENANT_ID']
azure.client_id = ENV['CLIENT_ID']
azure.client_secret = ENV['CLIENT_SECRET']
azure.subscription_id = ENV['SUBSCRIPTION_ID']
azure.vm_name = 'vagrant-rw'
azure.vm_image_urn = 'MicrosoftWindowsServer:WindowsServer:2016-Datacenter:latest'
azure.instance_ready_timeout = 600
azure.admin_username = "OctoAdmin"
azure.admin_password = 'TopSecretPassw0rd'
#override.winrm.transport = :ssl
#override.winrm.port = 5986
override.winrm.ssl_peer_verification = false # must be false if using a self signed cert
end
end
I seem to be stuck waiting for WinRM. I'm pretty confident that this isn't a networking issue my end or in Azure as I've been building Packer images in the same subscription.
Can anyone help with this?
OS is OS X 10.15.2
Vagrant 2.2.5