mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Fix typos in Vagrantfile
Replace references to OpenStack with AWS
This commit is contained in:
parent
e227252ef8
commit
2fd58a0476
1 changed files with 2 additions and 2 deletions
4
vagrant-aws/Vagrantfile
vendored
4
vagrant-aws/Vagrantfile
vendored
|
|
@ -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']
|
||||
|
|
|
|||
Loading…
Reference in a new issue