This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.box = "google/gce" | |
# You can customize any of the winrm settings available in Vagrant | |
# however, these are the required ones to work with default public Windows images | |
config.vm.communicator = "winrm" | |
config.winrm.port = '5896' | |
config.winrm.transport = 'negotiate' | |
config.winrm.username = 'WINRM_USERNAME' | |
config.winrm.password = 'WINRM_PASSWORD' |