1

Need to mount EFS drive on ECS Cluster automatically on launch of container instances. Is it possible with Clusters generated with the Wizard or do I need to create an AutoScaling group?

1 Answers1

1

A ECS Cluster is a logical grouping of hosts and does not cause any hosts to be provisioned. You probably want an autoscale group for that, in which case you'd probably configure the host via userdata / cloud-init to mount the EFS volume at bootup.

Jason Martin
  • 4,865
  • 15
  • 24
  • Yes, exactly, an AutoScale group is created by the wizard too I missed that earlier, and figured out it's possible to go in and modify that, so updated with my modified Launch Configuration and it works perfectly. – IoeI Plantic Feb 02 '17 at 18:30