mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Add a simple Terraform configuration to spin up an Ubuntu 14.04 EC2 instance in the default VPC using the default security group. Signed-off-by: Scott S. Lowe <scott.lowe@scottlowe.org>
11 lines
452 B
HCL
11 lines
452 B
HCL
# Create a new Ubuntu 14.04 instance using values from vars.tf and data.tf
|
|
resource "aws_instance" "test-01" {
|
|
ami = "${data.aws_ami.ubuntu-1404-ami.id}"
|
|
instance_type = "${var.flavor}"
|
|
key_name = "${var.keypair}"
|
|
vpc_security_group_ids = ["${var.sec-group}"]
|
|
subnet_id = "${data.aws_subnet.default-subnet.id}"
|
|
tags {
|
|
Name = "terraform"
|
|
}
|
|
}
|