简体   繁体   English

如何使用 terraform 在 LocalStack 上创建 EC2 实例?

[英]How to create EC2 instance on LocalStack with terraform?

I am trying to run EC2 instance on LocalStack using Terraform.我正在尝试使用 Terraform 在 LocalStack 上运行 EC2 实例。

After 50 minutes of trying to create the instance I got this response from terraform apply:在尝试创建实例 50 分钟后,我收到了来自 terraform 的响应:

Error: error getting EC2 Instance (i-cf4da152ddf3500e1) Credit Specifications: SerializationError: failed to unmarshal error message status code: 500, request id: caused by: UnmarshalError: failed to unmarshal error message caused by: expected element type <Response> but have <title>错误:获取 EC2 实例时出错 (i-cf4da152ddf3500e1) 信用规范:SerializationError:无法解组错误消息状态代码:500,请求 ID:导致:UnmarshalError:无法解组错误消息,原因:预期元素类型 <Response> 但有<标题>

on main.tf line 34, in resource "aws_instance" "example": 34: resource "aws_instance" "example" {在 main.tf 第 34 行,在资源“aws_instance”“example”中:34:资源“aws_instance”“example”{

For LocalStack and Terraform v0.12.18 I use this configuration:对于 LocalStack 和 Terraform v0.12.18 我使用以下配置:

provider "aws" {
  access_key                  = "mock_access_key"
  region                      = "us-east-1"
  s3_force_path_style         = true
  secret_key                  = "mock_secret_key"
  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"
    ec2            = "http://localhost:4597"
  }
}

resource "aws_instance" "example" {
  ami           = "ami-0c55b159cbfafe1f0"
  instance_type = "t2.micro"
}

When I run LocalStack with docker-compose up directly from newest github ( https://github.com/localstack/localstack ) From logs I have seen that EC2 related endpoint was setup.当我使用 docker-compose 直接从最新的 github ( https://github.com/localstack/localstack )运行 LocalStack 时,我从日志中看到了 EC2 相关端点的设置。

I appreciate any advice that would help me to run EC2 on LocalStack.我感谢任何可以帮助我在 LocalStack 上运行 EC2 的建议。

Working fine with below docker image of localstack.使用以下本地堆栈的 docker 图像正常工作。

docker run -it -p 4500-4600:4500-4600 -p 8080:8080 --expose 4572 localstack/localstack:0.11.1 docker 运行 -it -p 4500-4600:4500-4600 -p 8080:8080 --expose 4572 localstack/localstack:0.11.1

resource "aws_instance" "web" {
  ami           = "ami-0d57c0143330e1fa7"
  instance_type = "t2.micro"

  tags = {
    Name = "HelloWorld"
  }
}

provider "aws" {
  region                      = "us-east-1"
  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"
    ec2            = "http://localhost:4597"

  }
}

terraform apply terraform 适用

aws_instance.web: Destroying... [id=i-099392def6b574255]
aws_instance.web: Still destroying... [id=i-099392def6b574255, 10s elapsed]
aws_instance.web: Destruction complete after 10s
aws_instance.web: Creating...
aws_instance.web: Still creating... [10s elapsed]
aws_instance.web: Creation complete after 12s [id=i-9c942d138970d44a4]

Apply complete! Resources: 1 added, 0 changed, 1 destroyed.

Note : Its a dummy instance so won't be available for ssh and all.注意:它是一个虚拟实例,因此不适用于 ssh 等。 however, suitable for testing of terraform apply/destroy use case on ec2.但是,适用于在 ec2 上测试 terraform 应用/销毁用例。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM