average-cricket-80620
05/30/2022, 11:25 AMconst ecsCluster = new aws.ecs.Cluster(
'test',
{
name: 'test',
},
{
provider,
},
);
awslocal ecs describe-clusters --cluster test --region eu-central-1
shows this
{
"clusters": [
{
"clusterArn": "arn:aws:ecs:eu-central-1:000000000000:cluster/test",
"clusterName": "test",
"status": "ACTIVE",
"registeredContainerInstancesCount": 0,
"runningTasksCount": 0,
"pendingTasksCount": 0,
"activeServicesCount": 0
}
],
"failures": []
}
But when I do pulumilocal down
I get this error
error: deleting urn:pulumi:localstack::Development::aws:ecs/cluster:Cluster::test: 1 error occurred:
* error waiting for ECS Cluster (arn:aws:ecs:eu-central-1:000000000000:cluster/test) to become Deleted: couldn't find resource (21 retries)
Even though it does exist. It does however get deleted properlyNo matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by