Add app.vagrantup.com to allowed auth hosts
This should allow users setting VAGRANT_SERVER_URL to app.vagrantup.com to authenticate to private boxes.
This commit is contained in:
parent
c5266e98b8
commit
40d8dc4582
|
@ -7,6 +7,7 @@ module VagrantPlugins
|
|||
module LoginCommand
|
||||
class AddAuthentication
|
||||
ALLOWED_AUTHENTICATION_HOSTS = %w[
|
||||
app.vagrantup.com
|
||||
atlas.hashicorp.com
|
||||
vagrantcloud.com
|
||||
].freeze
|
||||
|
|
|
@ -71,13 +71,15 @@ describe VagrantPlugins::LoginCommand::AddAuthentication do
|
|||
|
||||
original = [
|
||||
"http://google.com/box.box",
|
||||
"http://app.vagrantup.com/foo.box",
|
||||
"http://vagrantcloud.com/foo.box",
|
||||
"http://vagrantcloud.com/bar.box?arg=true",
|
||||
]
|
||||
|
||||
expected = original.dup
|
||||
expected[1] = "#{original[1]}?access_token=#{token}"
|
||||
expected[2] = "#{original[2]}&access_token=#{token}"
|
||||
expected[2] = "#{original[2]}?access_token=#{token}"
|
||||
expected[3] = "#{original[3]}&access_token=#{token}"
|
||||
|
||||
env[:box_urls] = original.dup
|
||||
subject.call(env)
|
||||
|
|
Loading…
Reference in New Issue