Elasticbeanstalk部署的最新Go解决方案堆栈名称是什么?

时间:2020-09-07 06:42:35

标签: amazon-web-services go amazon-elastic-beanstalk

我正在使用terraform创建一个弹性beantalk环境和应用程序。在aws doc website上看到的解决方案堆栈名称未列出当前时间段[2020年9月8日]的解决方案名称。

因此,当我尝试运行No Solution Stack named '64bit Amazon Linux 2 v3.1.2 running Go 1' found.时,我总是收到错误消息terraform apply

此外,我正在使用cloud posse提供的模块来启动并运行我的基础架构,但是我怀疑cloud posse在这里有问题。非常感谢您的帮助。谢谢

更新:这是用于创建弹性beasntalk资源的terraform源代码。

provider aws {
    region = var.region
}

module vpc {
    source     = "git::https://github.com/cloudposse/terraform-aws-vpc.git?ref=master"
    namespace  = var.namespace
    stage      = var.stage
    name       = var.name
    cidr_block = "172.16.0.0/16"
}

module subnets {
    source               = "git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=master"
    availability_zones   = ["us-east-1a"]
    namespace            = var.namespace
    stage                = var.stage
    name                 = var.name
    vpc_id               = module.vpc.vpc_id
    igw_id               = module.vpc.igw_id
    cidr_block           = module.vpc.vpc_cidr_block
    nat_gateway_enabled  = false
    nat_instance_enabled = false
}

module elastic_beanstalk_application {
    source      = "git::https://github.com/cloudposse/terraform-aws-elastic-beanstalk-application.git?ref=master"
    namespace   = var.namespace
    stage       = var.stage
    name        = var.name
    description = "Sentinel Staging"
}

module elastic_beanstalk_environment {
    source                             = "git::https://github.com/cloudposse/terraform-aws-elastic-beanstalk-environment.git?ref=master"
    namespace                          = var.namespace
    stage                              = var.stage
    name                               = var.name
    description                        = "Test elastic_beanstalk_environment"
    region                             = var.region
    availability_zone_selector         = "Any 2"
    dns_zone_id                        = var.dns_zone_id
    elastic_beanstalk_application_name = module.elastic_beanstalk_application.elastic_beanstalk_application_name

    instance_type           = "t3.small"
    autoscale_min           = 1
    autoscale_max           = 2
    updating_min_in_service = 0
    updating_max_batch      = 1

    loadbalancer_type       = "application"
    vpc_id                  = module.vpc.vpc_id
    loadbalancer_subnets    = module.subnets.public_subnet_ids
    application_subnets     = module.subnets.public_subnet_ids
    allowed_security_groups = [module.vpc.vpc_default_security_group_id]

    // https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html
    // https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html#platforms-supported.docker
    solution_stack_name = "64bit Amazon Linux 2 v3.1.2 running Go 1"

    additional_settings = [
      {
        namespace = "aws:elasticbeanstalk:application:environment"
        name      = "DB_URI"
        value     = var.db_uri
      },
      {
        namespace = "aws:elasticbeanstalk:application:environment"
        name      = "USER"
        value     = var.user
      },
      {
        namespace = "aws:elasticbeanstalk:application:environment"
        name      = "PASSWORD"
        value     = var.password
      },
      {
        namespace = "aws:elasticbeanstalk:application:environment"
        name      = "PORT"
        value     = "5000"
      }
    ]
  }

这是当我尝试terraform apply并使用适当的变量作为命令行参数传递时从控制台获取的确切错误。

module.subnets.aws_network_acl.public[0]: Refreshing state... [id=acl-0a62395908205c288]
module.subnets.data.aws_availability_zones.available[0]: Reading... [id=2020-09-07 06:34:08.002137232 +0000 UTC]
module.subnets.data.aws_availability_zones.available[0]: Read complete after 0s [id=2020-09-07 06:34:12.416467455 +0000 UTC]
module.elastic_beanstalk_environment.aws_elastic_beanstalk_environment.default: Creating...

Error: InvalidParameterValue: No Solution Stack named '64bit Amazon Linux 2 v3.1.2 running Go 1' found.
    status code: 400, request id: 631d5204-f667-4355-aa65-d617536a00b7

  on .terraform/modules/elastic_beanstalk_environment/main.tf line 505, in resource "aws_elastic_beanstalk_environment" "default":
 505: resource "aws_elastic_beanstalk_environment" "default" {

0 个答案:

没有答案
相关问题