1
0
Fork 0
This commit is contained in:
Cedric Girard 2020-05-11 14:46:09 +02:00
parent c4eafdccce
commit c008077ea1
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
1 changed files with 9 additions and 0 deletions

9
project1/base.tf Normal file
View File

@ -0,0 +1,9 @@
provider "aws" {
region = "eu-west-1"
}
resource "aws_instance" "res1" {
ami = "ami-06ce3edf0cff21f07"
instance_type = "t2.micro"
key_name = "cgd"
}