provider/aws: switch test to use more accessible ami

Switch out an AMI that doesn't require marketplace terms acceptance.
This commit is contained in:
Paul Hinze 2015-12-08 14:40:24 -06:00
parent fcd8a881df
commit 6e32320e41
1 changed files with 2 additions and 2 deletions

View File

@ -169,9 +169,9 @@ resource "aws_subnet" "foo" {
resource "aws_instance" "test" {
// This AMI has one block device mapping, so we expect to have
// one snapshot in our created AMI.
// This is an Amazon Linux HVM AMI. A public HVM AMI is required
// This is an Ubuntu Linux HVM AMI. A public HVM AMI is required
// because paravirtual images cannot be copied between accounts.
ami = "ami-5449393e"
ami = "ami-0f8bce65"
instance_type = "t2.micro"
tags {
Name = "terraform-acc-ami-copy-victim"