This template creates an Amazon Elastic Container Service (Amazon ECS) service with ECS Exec enabled. The service has a desired count of 1 and uses a cluster, task definition, and ECS Exec flag that are declared elsewhere in the same template.

CloudFormation Template

AWSTemplateFormatVersion: '2010-09-09'
Description: ECS Service with ECS Exec Enabled
Parameters:
  ECSCluster:
    Type: String
  TaskDefinition:
    Type: String
Resources:
  ECSService:
    Type: 'AWS::ECS::Service'
    Properties:
      Cluster:
        Ref: "ECSCluster"
      DesiredCount: 1
      EnableExecuteCommand: true
      TaskDefinition:
        Ref: "TaskDefinition"