You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/acctest/plugin/test-fixtures/basic_amazon_with_required_...

21 lines
383 B

packer {
required_plugins {
amazon = {
source = "github.com/hashicorp/amazon",
version = "~> 1"
}
}
}
source "amazon-ebs" "basic-test" {
region = "us-east-1"
instance_type = "m3.medium"
source_ami = "ami-76b2a71e"
ssh_username = "ubuntu"
ami_name = "packer-plugin-external-amazon-ebs-test"
}
build {
sources = ["source.amazon-ebs.basic-test"]
}