我正在按照教程使用CDK部署到ECS,但是当我部署时,我在部署后收到以下错误。
botocore.exceptions.NoRegionError: You must specify a region.
以下是我要部署的内容。
app.py
#!/usr/bin/env python3
from os import environ
from aws_cdk import core as cdk
from ecs_test.ecs_test_stack import EcsTestStack
_env=cdk.Environment(account=environ["CDK_DEF
我正在为Windows集群使用最新的ECS代理v1.22.0。我想尝试新特性,但是下面的错误消息失败了:
service XXX was unable to place a task because no container instance met
all of its requirements. The closest matching container-instance YYY is
missing an attribute required by your task.
ECS代理日志不显示任何错误。“我的任务”具有以下属性:
"requiresAttributes":
我们正在使用terraform导入ECS解决方案,由于某些原因,我无法通过此错误。
aws_ecs_task_definition.clustername: ClientException: Container.name should not be null or empty. 09-Feb-2017 23:35:1 status code: 400
我相信这来自这个json文件,service-prod-server.json
#aws_ecs_task_definition
resource "aws_ecs_task_definition" "cluster-na
我正试图在一个受严格限制的AWS环境中部署一个批处理计算环境。为了计费的目的,创建的所有资源都需要被标记(例如billTo: billId),如果我试图创建一个没有这个标记的资源,我就会被一个显式的拒绝阻止。当批处理计算环境尝试创建ECS群集时,我会得到以下错误,因为它没有将标记传递给它。
User: arn:aws:sts::<accountId>:assumed-role/<roleName> is not authorized to perform ecs:CreateCluster on resource: * with an explicit deny
在创建