This commit is contained in:
Edward Viaene
2016-10-12 16:10:31 +00:00
parent 9d3c2936ea
commit 2cdc2aec7b
6 changed files with 168 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
resource "aws_instance" "example" {
ami = "${lookup(var.AMIS, var.AWS_REGION)}"
instance_type = "t2.micro"
# the VPC subnet
subnet_id = "${aws_subnet.main-public-1.id}"
# the security group
vpc_security_group_ids = ["${aws_security_group.allow-ssh.id}"]
# the public SSH key
key_name = "${aws_key_pair.mykeypair.key_name}"
}