본문 바로가기

퍼블릭 클라우드

[iac][terraform] aws provider 생성

728x90

terraform provider 생성

~/.aws/credentials 확인

$ vim ~/.aws/credentials
[terraformA]
aws_access_key_id = AWSACCESSKEYID
aws_secret_access_key = AWSSECRETACCESSKEY

~/.aws/config 확인

$ vim ~/.aws/config
[terraformA]
region = us-east-1

디렉토리 생성

$ mkdir -p terraformA/aws/serviceA/us-east-1

aws provider

provider.tf 파일 생성

$ vim provider.tf
terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "3.25.0"
    }
  }
}

provider "aws" {
  # Configuration options
  shared_credentials_file = "~/.aws/credentials"
  region  = "us-east-1"
  profile = "terraformA"
}

terraform init 명령 실행

$ terraform init

Initializing the backend...

Initializing provider plugins...
- Reusing previous version of hashicorp/aws from the dependency lock file
- Installing hashicorp/aws v3.25.0...
- Installed hashicorp/aws v3.25.0 (signed by HashiCorp)

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

 

참고URL

- https://registry.terraform.io/providers/hashicorp/aws/latest

- https://learn.hashicorp.com/tutorials/terraform/aws-remote?in=terraform/aws-get-started

 

728x90