Let's test your knowledge. Fill in the missing part by typing it in.
To deploy an application in ECS, you need to follow these steps:
Define the ECS ____: A task definition is a blueprint that describes how Docker containers should be run within an ECS cluster. It includes information about the container image, networking settings, resource requirements, and more. By defining the task, you specify the instructions for launching and initializing your application containers.
Create the ECS ____: An ECS service is a long-running task that's automatically maintained by ECS. It ensures that the specified number of tasks are running and replaces any that fail or become unhealthy. The service also handles load balancing and scaling of the tasks. By creating the service, you specify the number of instances of the task to run and the desired scaling options.
Update the ECS ____: After the service is created, you can update it to modify its configuration or scale the tasks. You can change the number of desired tasks, modify the network or resource settings, or update the container image.
Write the missing line below.