Home > Enterprise >  ECS fargate capacity provider
ECS fargate capacity provider

Time:04-14

I have create a ECS cluster and will use fargate.Now i am trying to create a capacity provider for ECS cluster.

As per documents below is sample for creating ECS CapacityProvider

{
  "Type" : "AWS::ECS::CapacityProvider",
  "Properties" : {
      "AutoScalingGroupProvider" : AutoScalingGroupProvider,
      "Name" : String,
      "Tags" : [ Tag, ... ]
    }
}


Here in above template we have to provide autoscalling group. But if i create ASG group them have to create launch configuration and provide instance type etc.

But as per my understanding in fargate we don't have to create EC2.And above LC and ASG will create EC2. I am confused now how to create capacity provider in ECS fargate.

CodePudding user response:

how to create capacity provider in ECS fargate

You don't create it. It is automatically provided and managed by AWS. You just associate them with your cluster using DefaultCapacityProviderStrategy

  • Related