You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
I am running vagrant 2.0.3 on Ubuntu 16.04 and vagrant-aws 0.7.2
I can vagrant up and vagrant halt without any problems for deploying to AWS. When I try "vagrant destroy", I get the following error:
expects.rb:7:in `response_call': InvalidParameterValue => You must specify an association id when unmapping an address from a VPC instance (Fog::Compute::AWS::Error)
Vagrantfile:
config.vm.define "aws", autostart: false do |aws|
aws.vm.box = "dummy"
aws.vm.provider "aws" do |a, override|
# access keys in .aws/credentials, default region in .aws/config
a.region = "us-east-1"
a.ami = "ami-346b9c49"
a.instance_type= "t1.micro"
a.security_groups = ["default"]
a.tags = {
"Name" => "vagrant-aws"
}
a.elastic_ip = true
a.keypair_name = "geert"
override.ssh.private_key_path = ".ssh/test.pem"
override.ssh.username = "ubuntu"
end
aws.vm.hostname = "vagrant-aws"
end
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am running vagrant 2.0.3 on Ubuntu 16.04 and vagrant-aws 0.7.2
I can vagrant up and vagrant halt without any problems for deploying to AWS. When I try "vagrant destroy", I get the following error:
expects.rb:7:in `response_call': InvalidParameterValue => You must specify an association id when unmapping an address from a VPC instance (Fog::Compute::AWS::Error)
Vagrantfile:
config.vm.define "aws", autostart: false do |aws|
aws.vm.box = "dummy"
aws.vm.provider "aws" do |a, override|
# access keys in .aws/credentials, default region in .aws/config
a.region = "us-east-1"
a.ami = "ami-346b9c49"
a.instance_type= "t1.micro"
a.security_groups = ["default"]
a.tags = {
"Name" => "vagrant-aws"
}
a.elastic_ip = true
a.keypair_name = "geert"
override.ssh.private_key_path = ".ssh/test.pem"
override.ssh.username = "ubuntu"
end
aws.vm.hostname = "vagrant-aws"
end
The text was updated successfully, but these errors were encountered: