前提条件
配置AWS
aws configure list
      Name                    Value             Type    Location
      ----                    -----             ----    --------
   profile                <not set>             None    None
access_key     ****************s-ok shared-credentials-file
secret_key     ****************-key shared-credentials-file
    region                    local      config-file    ~/.aws/config
~/.aws/config
[default]
output = json
region = local
~/.aws/credentials
[default]
aws_access_key_id = any-id-is-ok
aws_secret_access_key = fake-key
启动aws本地服务
localstack start
创建EC2
配置
mkdir ec2
cd ec2
touch ec2.tf
ec2.tf
provider "aws" {
  profile    = "default"
  region     = "us-east-1"
  endpoints {
      ec2    = "http://localhost:4597"
      sts    = "http://localhost:4592"
  }
}
resource "aws_instance" "example" {
  ami           = "ami-2757f631"
  instance_type = "t2.micro"
}
aws localstack provider
provider "aws" {
  access_key                  = "mock_access_key"
  region                      = "us-east-1"
  secret_key                  = "mock_secret_key"
  
  s3_force_path_style         = true  
  skip_credentials_validation = true
  skip_metadata_api_check     = true
  skip_requesting_account_id  = true
  endpoints {
    apigateway     = "http://localhost:4567"
    cloudformation = "http://localhost:4581"
    cloudwatch     = "http://localhost:4582"
    dynamodb       = "http://localhost:4569"
    es             = "http://localhost:4578"
    firehose       = "http://localhost:4573"
    iam            = "http://localhost:4593"
    kinesis        = "http://localhost:4568"
    lambda         = "http://localhost:4574"
    route53        = "http://localhost:4580"
    redshift       = "http://localhost:4577"
    s3             = "http://localhost:4572"
    secretsmanager = "http://localhost:4584"
    ses            = "http://localhost:4579"
    sns            = "http://localhost:4575"
    sqs            = "http://localhost:4576"
    ssm            = "http://localhost:4583"
    stepfunctions  = "http://localhost:4585"
    sts            = "http://localhost:4592"
  }
}
初始化
- 下载SP - terraform init
- 应用配置 - terraform apply
成功执行后terraform.tfstate自动生成,该文件记录被管理资源的ID
- 显示结果 - terraform show
检查结果
awslocal ec2 describe-instances
销毁资源
terraform destroy
配置
.terraformrc
plugin_cache_dir   = "$HOME/.terraform.d/plugin-cache"
disable_checkpoint = true
- Third-party Plugins
These third-party providers must be manually installed,
since terraform init cannot automatically download them
~/.terraform.d/plugin
init
terraform init -input=false -plugin-dir=/usr/lib/custom-terraform-plugins/windows_amd64