From 2fd58a04761e9df8d8a05a9ba1a0bd6202b5de4f Mon Sep 17 00:00:00 2001 From: "Scott S. Lowe" Date: Sat, 8 Oct 2016 20:29:07 -0600 Subject: [PATCH] Fix typos in Vagrantfile Replace references to OpenStack with AWS --- vagrant-aws/Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vagrant-aws/Vagrantfile b/vagrant-aws/Vagrantfile index a03dca2..3c766cf 100644 --- a/vagrant-aws/Vagrantfile +++ b/vagrant-aws/Vagrantfile @@ -13,13 +13,13 @@ Vagrant.require_version '>= 1.6.0' VAGRANTFILE_API_VERSION = '2' ENV['VAGRANT_DEFAULT_PROVIDER'] = 'aws' -# Create and configure the OpenStack instance(s) +# Create and configure the AWS instance(s) Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Use dummy AWS box config.vm.box = 'aws-dummy' - # Specify OpenStack authentication information + # Specify AWS authentication information config.vm.provider 'aws' do |aws, override| # Specify access/authentication information, keypair aws.access_key_id = ENV['AWS_ACCESS_KEY_ID']