output 변수 테스트

This commit is contained in:
2022-12-27 23:18:58 +09:00
parent c79a4c9c29
commit 72fb5351b6
12 changed files with 138 additions and 65 deletions

14
01-start/main.tf Normal file
View File

@ -0,0 +1,14 @@
provider "aws" {
region = "ap-northeast-2"
}
resource "aws_instance" "ubuntu" {
ami = "ami-0ab04b3ccbadfae1f"
instance_type = "t2.micro"
tags = {
Name = "tf-ubuntu"
}
}