Skip to content

Instantly share code, notes, and snippets.

@radeksimko
Created May 15, 2017 04:57
Show Gist options
  • Save radeksimko/26a681cbe6fdf9f0b825873451b06cc9 to your computer and use it in GitHub Desktop.
Save radeksimko/26a681cbe6fdf9f0b825873451b06cc9 to your computer and use it in GitHub Desktop.
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"] # Canonical
}
resource "aws_instance" "web" {
ami = "${data.aws_ami.ubuntu.id}"
instance_type = "t2.micro"
root_block_device {
volume_type = "io1"
volume_size = 50
iops = 32000
delete_on_termination = true
}
tags {
Name = "BigMachine ${count.index}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment