Obrigado Diogo,
Tirei essa linha, mas o resultado foi o mesmo. No console o que é impresso (fora o stacktrace) é o seguinte:
Bringing machine 'default' up with 'aws' provider...
==> default: Warning! The AWS provider doesn't support any of the Vagrant
==> default: high-level network configurations (`config.vm.network`). They
==> default: will be silently ignored.
==> default: Launching an instance with the following settings...
==> default: -- Type: m3.medium
==> default: -- AMI: ami-358c955c
==> default: -- Region: us-east-1
==> default: -- Keypair: devops
==> default: -- Security Groups: ["devops"]
==> default: -- Block Device Mapping: []
==> default: -- Terminate On Shutdown: false
==> default: -- Monitoring: false
==> default: -- EBS optimized: false
==> default: -- Assigning a public IP address in a VPC: false
==> default: Warning! Vagrant might not be able to SSH into the instance.
==> default: Please check your security groups settings.
/home/edumelo/.vagrant.d/gems/gems/excon-0.45.4/lib/excon/middlewares/expects.rb:6:in `response_call': The security group 'devops' does not exist (Fog::Compute::AWS::NotFound)
Tentei utilizar o Security Group default daí o erro mudou:
/home/edumelo/.vagrant.d/gems/gems/excon-0.45.4/lib/excon/middlewares/expects.rb:6:in `response_call': The image id '[ami-4d883350]' does not exist (Fog::Compute::AWS::NotFound)
Daí alterei o ami para ser o mesmo do exercício. E o erro foi o seguinte:
/home/edumelo/.vagrant.d/gems/gems/excon-0.45.4/lib/excon/middlewares/expects.rb:6:in `response_call': The key pair 'devops' does not exist (Fog::Compute::AWS::NotFound)
A minha impressão é de que o Vagrant não está conseguindo ler as informações específicas da minha conta. Sei que ele está entrando em contato com o seviço da Amazon pois quando checo no console as Access Keys a data da última atualização é atualizada, mas me parece que o Vagrant não tem autorização suficiente para retornar as informações. Isso faz sentido de alguma forma?
Obrigado