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:
parent
fcd8a881df
commit
6e32320e41
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue