해결된 질문
작성
·
832
0
디렉토리가 없다고 나옵니다
incle@incleuicBookPro ~ % mkdir -p /Users/incle/.terraform.d/plugin-cache
위명령어를 통해 디렉토리를 생성했습니다.
incle@incleuicBookPro terra % terraform init
Terraform initialized in an empty directory!
The directory has no Terraform configuration files. You may begin working
with Terraform immediately by creating Terraform configuration files.
incle@incleuicBookPro terra % terraform init
Terraform initialized in an empty directory!
강의 내용에 있는 걸 그대로 붙여넣었고
테라폼인잇 명령어를 친결과입니다.
provider "aws" { region = "ap-northeast-2" } data "aws_caller_identity" "current" {} output "account_id" { value = data.aws_caller_identity.current.account_id } output "caller_arn" { value = data.aws_caller_identity.current.arn } output "caller_user" { value = data.aws_caller_identity.current.user_id }
현재 강의 그대로 따라하고 있으며 강의에서 나온것처럼 main.tf를생성하였습니다.
강의 내용과 좀 다른것이라면 main.tf 상위 폴더에 폴더 이미지가 강사님건있는데
제껀 없네요
뭘 놓친게 있는건지...다시 처음부터 강의를 보고있습니다.
강사님 테라폼 폴더는 언제생겼는지도 보이지않네요-_ㅜ