first tf
This commit is contained in:
parent
c4eafdccce
commit
c008077ea1
1 changed files with 9 additions and 0 deletions
9
project1/base.tf
Normal file
9
project1/base.tf
Normal 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"
|
||||
}
|
Loading…
Reference in a new issue