mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
21 lines
425 B
HCL
21 lines
425 B
HCL
packer {
|
|
required_plugins {
|
|
amazon = {
|
|
version = "~> 1"
|
|
source = "github.com/hashicorp/amazon"
|
|
}
|
|
}
|
|
}
|
|
|
|
source "amazon-ebs" "basic-test" {
|
|
region = "us-east-1"
|
|
instance_type = "m3.medium"
|
|
source_ami = "ami-76b2a71e"
|
|
ssh_username = "ubuntu"
|
|
ami_name = "packer-plugin-amazon-ebs-test"
|
|
skip_create_ami = true
|
|
}
|
|
|
|
build {
|
|
sources = ["source.amazon-ebs.basic-test"]
|
|
}
|