반응형
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
반응형
'퍼블릭 클라우드' 카테고리의 다른 글
[Terraform] 테라폼 서브넷 생성 (0) | 2021.01.29 |
---|---|
[Terraform] 테라폼 VPC 생성 (0) | 2021.01.29 |
[Terraform] 테라폼 프로바이더(Provider) 및 VPC 생성 (0) | 2021.01.28 |
CentOS 7에서 Terraform을 설치하는 방법 (0) | 2021.01.26 |
AWS RDS mysqldump(backup) error (0) | 2021.01.12 |