1
0
Fork 0
terraform-training/project1/base.tf
2020-05-12 10:31:09 +02:00

21 lines
424 B
HCL

provider "aws" {
region = "eu-west-2"
}
resource "aws_instance" "cedric-instance1" {
ami = "ami-01a6e31ac994bbc09"
instance_type = "t2.micro"
key_name = "cedric"
tags = {
Name = "cedric-instance1"
}
}
resource "aws_instance" "cedric-instance2" {
ami = "ami-01a6e31ac994bbc09"
instance_type = "t2.micro"
key_name = "cedric"
tags = {
Name = "cedric-instance2"
}
}