Skip to content

Commit

Permalink
Fix typo in howto-ecs-basics (#247)
Browse files Browse the repository at this point in the history
Fix invalid value for `MinimumHealthyPercent`
  • Loading branch information
igreg authored and lavignes committed Jan 14, 2020
1 parent f4caf31 commit 639fb99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions walkthroughs/howto-ecs-basics/deploy/1-servicediscovery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ Resources:
Cluster: !Ref ECSCluster
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100`
MinimumHealthyPercent: 100
DesiredCount: 3
LaunchType: 'FARGATE'
TaskDefinition: !Ref FrontTaskDef
Expand Down Expand Up @@ -520,4 +520,4 @@ Outputs:
Description: 'Public endpoint for Front service'
Value: !Join ['', ['http://', !GetAtt 'PublicLoadBalancer.DNSName']]
Export:
Name: !Sub "${ProjectName}:FrontEndpoint"
Name: !Sub "${ProjectName}:FrontEndpoint"

0 comments on commit 639fb99

Please sign in to comment.