InvalidParameterCombination => Non-Windows instances with a virtualization type of 'hvm' are currently not supported for this instance type.



  • $ vagrant up --provider=aws
    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: t1.micro
    ==> default:  -- AMI: ami-53ba502b
    ==> default:  -- Region: us-west-2
    ==> default:  -- Keypair: Demokey
    ==> default:  -- Block Device Mapping: []
    ==> default:  -- Terminate On Shutdown: false
    ==> default:  -- Monitoring: false
    ==> default:  -- EBS optimized: false
    ==> default:  -- Source Destination check: 
    ==> default:  -- Assigning a public IP address in a VPC: false
    ==> default:  -- VPC tenancy specification: default
    There was an error talking to AWS. The error message is shown
    below:
    
    InvalidParameterCombination => Non-Windows instances with a virtualization type of 'hvm' are currently not supported for this instance type.
    

    The issue here is in the Vagrantfile you have defined a entry for the instance_type: aws.instance_type = "t1.micro"

    In this case the t1.micro does not support hvm virtualization type, change the value to aws.instance_type = "t2.micro"


Log in to reply
 

© Lightnetics 2024