walkthroughs/howto-http2/app.yaml (560 lines of code) (raw):
Parameters:
ProjectName:
Type: String
Description: Project name to link stacks
EnvoyImage:
Type: String
Description: Envoy container image
ColorClientImage:
Type: String
Description: Color client app container image
ColorServerImage:
Type: String
Description: Color server app container image
ContainerPort:
Type: Number
Description: Port number to use for applications
Default: 8080
Resources:
PublicLoadBalancerSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: 'Access to the public facing load balancer'
VpcId:
Fn::ImportValue: !Sub '${ProjectName}:VPC'
SecurityGroupIngress:
- CidrIp: 0.0.0.0/0
IpProtocol: tcp
FromPort: 80
ToPort: 80
PublicLoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Scheme: internet-facing
LoadBalancerAttributes:
- Key: idle_timeout.timeout_seconds
Value: '30'
Subnets:
- Fn::ImportValue: !Sub '${ProjectName}:PublicSubnet1'
- Fn::ImportValue: !Sub '${ProjectName}:PublicSubnet2'
SecurityGroups:
- !Ref PublicLoadBalancerSecurityGroup
WebTargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
Properties:
HealthCheckIntervalSeconds: 6
HealthCheckPath: '/ping'
HealthCheckProtocol: HTTP
HealthCheckTimeoutSeconds: 5
HealthyThresholdCount: 2
TargetType: ip
Name: !Sub '${ProjectName}-webtarget'
Port: 80
Protocol: HTTP
UnhealthyThresholdCount: 2
TargetGroupAttributes:
- Key: deregistration_delay.timeout_seconds
Value: 120
VpcId:
Fn::ImportValue: !Sub '${ProjectName}:VPC'
PublicLoadBalancerListener:
Type: AWS::ElasticLoadBalancingV2::Listener
Properties:
DefaultActions:
- TargetGroupArn: !Ref WebTargetGroup
Type: 'forward'
LoadBalancerArn: !Ref PublicLoadBalancer
Port: 80
Protocol: HTTP
WebLoadBalancerRule:
Type: AWS::ElasticLoadBalancingV2::ListenerRule
Properties:
Actions:
- TargetGroupArn: !Ref WebTargetGroup
Type: 'forward'
Conditions:
- Field: path-pattern
Values:
- '*'
ListenerArn: !Ref PublicLoadBalancerListener
Priority: 1
TaskSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: "Security group for the tasks"
VpcId:
Fn::ImportValue: !Sub '${ProjectName}:VPC'
SecurityGroupIngress:
- CidrIp:
Fn::ImportValue: !Sub '${ProjectName}:VpcCIDR'
IpProtocol: -1
LogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub '${ProjectName}-log-group'
RetentionInDays: 30
TaskIamRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument: |
{
"Statement": [{
"Effect": "Allow",
"Principal": { "Service": [ "ecs-tasks.amazonaws.com" ]},
"Action": [ "sts:AssumeRole" ]
}]
}
ManagedPolicyArns:
- arn:aws:iam::aws:policy/CloudWatchFullAccess
- arn:aws:iam::aws:policy/AWSXRayDaemonWriteAccess
- arn:aws:iam::aws:policy/AWSAppMeshEnvoyAccess
TaskExecutionIamRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument: |
{
"Statement": [{
"Effect": "Allow",
"Principal": { "Service": [ "ecs-tasks.amazonaws.com" ]},
"Action": [ "sts:AssumeRole" ]
}]
}
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryReadOnly
- arn:aws:iam::aws:policy/CloudWatchLogsFullAccess
SecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: "Security group for the instances"
VpcId:
Fn::ImportValue: !Sub '${ProjectName}:VPC'
SecurityGroupIngress:
- CidrIp:
Fn::ImportValue: !Sub '${ProjectName}:VpcCIDR'
IpProtocol: -1
ColorClientRegistry:
Type: AWS::ServiceDiscovery::Service
Properties:
Name: 'color_client'
DnsConfig:
NamespaceId:
Fn::ImportValue: !Sub '${ProjectName}:CloudMapNamespaceId'
DnsRecords:
- Type: A
TTL: 300
HealthCheckCustomConfig:
FailureThreshold: 1
ColorClientService:
Type: AWS::ECS::Service
DependsOn:
- WebLoadBalancerRule
Properties:
Cluster:
Fn::ImportValue: !Sub '${ProjectName}:ECSCluster'
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100
DesiredCount: 1
LaunchType: 'FARGATE'
ServiceRegistries:
- RegistryArn: !GetAtt 'ColorClientRegistry.Arn'
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: DISABLED
SecurityGroups:
- !Ref SecurityGroup
Subnets:
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet1'
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet2'
TaskDefinition: !Ref ColorClientTaskDef
LoadBalancers:
- ContainerName: app
ContainerPort: !Ref ContainerPort
TargetGroupArn: !Ref WebTargetGroup
ColorClientTaskDef:
Type: AWS::ECS::TaskDefinition
Properties:
RequiresCompatibilities:
- 'FARGATE'
Family: 'color_client'
NetworkMode: 'awsvpc'
Cpu: 256
Memory: 512
TaskRoleArn: !Ref TaskIamRole
ExecutionRoleArn: !Ref TaskExecutionIamRole
ProxyConfiguration:
Type: 'APPMESH'
ContainerName: 'envoy'
ProxyConfigurationProperties:
- Name: 'IgnoredUID'
Value: '1337'
- Name: 'ProxyIngressPort'
Value: '15000'
- Name: 'ProxyEgressPort'
Value: '15001'
- Name: 'AppPorts'
Value: !Sub '${ContainerPort}'
- Name: 'EgressIgnoredIPs'
Value: '169.254.170.2,169.254.169.254'
ContainerDefinitions:
- Name: 'app'
Image: !Ref ColorClientImage
Essential: true
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_client'
PortMappings:
- ContainerPort: !Ref ContainerPort
Protocol: 'tcp'
Environment:
- Name: 'PORT'
Value: !Sub '${ContainerPort}'
- Name: 'COLOR_HOST'
Value: !Sub 'color_server.${ProjectName}.local:${ContainerPort}'
- Name: envoy
Image: !Ref EnvoyImage
Essential: true
User: '1337'
Ulimits:
- Name: "nofile"
HardLimit: 15000
SoftLimit: 15000
PortMappings:
- ContainerPort: 9901
Protocol: 'tcp'
- ContainerPort: 15000
Protocol: 'tcp'
- ContainerPort: 15001
Protocol: 'tcp'
HealthCheck:
Command:
- 'CMD-SHELL'
- 'curl -s http://localhost:9901/server_info | grep state | grep -q LIVE'
Interval: 5
Timeout: 2
Retries: 3
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_client-envoy'
Environment:
- Name: 'APPMESH_RESOURCE_ARN'
Value: !Sub 'mesh/${ProjectName}-mesh/virtualNode/color_client'
- Name: 'ENVOY_LOG_LEVEL'
Value: 'debug'
ColorServerRedTaskDef:
Type: AWS::ECS::TaskDefinition
Properties:
RequiresCompatibilities:
- 'FARGATE'
Family: 'red'
NetworkMode: 'awsvpc'
Cpu: 256
Memory: 512
TaskRoleArn: !Ref TaskIamRole
ExecutionRoleArn: !Ref TaskExecutionIamRole
ProxyConfiguration:
Type: 'APPMESH'
ContainerName: 'envoy'
ProxyConfigurationProperties:
- Name: 'IgnoredUID'
Value: '1337'
- Name: 'ProxyIngressPort'
Value: '15000'
- Name: 'ProxyEgressPort'
Value: '15001'
- Name: 'AppPorts'
Value: !Sub '${ContainerPort}'
- Name: 'EgressIgnoredIPs'
Value: '169.254.170.2,169.254.169.254'
ContainerDefinitions:
- Name: 'app'
Image: !Ref ColorServerImage
Essential: true
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-red'
PortMappings:
- ContainerPort: !Ref ContainerPort
Protocol: 'tcp'
Environment:
- Name: 'PORT'
Value: !Sub '${ContainerPort}'
- Name: 'COLOR'
Value: 'red'
- Name: envoy
Image: !Ref EnvoyImage
Essential: true
User: '1337'
Ulimits:
- Name: "nofile"
HardLimit: 15000
SoftLimit: 15000
PortMappings:
- ContainerPort: 9901
Protocol: 'tcp'
- ContainerPort: 15000
Protocol: 'tcp'
- ContainerPort: 15001
Protocol: 'tcp'
HealthCheck:
Command:
- 'CMD-SHELL'
- 'curl -s http://localhost:9901/server_info | grep state | grep -q LIVE'
Interval: 5
Timeout: 2
Retries: 3
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-red-envoy'
Environment:
- Name: 'APPMESH_RESOURCE_ARN'
Value: !Sub 'mesh/${ProjectName}-mesh/virtualNode/color_server-red'
- Name: 'ENVOY_LOG_LEVEL'
Value: 'debug'
ColorServerGreenTaskDef:
Type: AWS::ECS::TaskDefinition
Properties:
RequiresCompatibilities:
- 'FARGATE'
Family: 'green'
NetworkMode: 'awsvpc'
Cpu: 256
Memory: 512
TaskRoleArn: !Ref TaskIamRole
ExecutionRoleArn: !Ref TaskExecutionIamRole
ProxyConfiguration:
Type: 'APPMESH'
ContainerName: 'envoy'
ProxyConfigurationProperties:
- Name: 'IgnoredUID'
Value: '1337'
- Name: 'ProxyIngressPort'
Value: '15000'
- Name: 'ProxyEgressPort'
Value: '15001'
- Name: 'AppPorts'
Value: !Sub '${ContainerPort}'
- Name: 'EgressIgnoredIPs'
Value: '169.254.170.2,169.254.169.254'
ContainerDefinitions:
- Name: 'app'
Image: !Ref ColorServerImage
Essential: true
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-green'
PortMappings:
- ContainerPort: !Ref ContainerPort
Protocol: 'tcp'
Environment:
- Name: 'PORT'
Value: !Sub '${ContainerPort}'
- Name: 'COLOR'
Value: 'green'
- Name: envoy
Image: !Ref EnvoyImage
Essential: true
User: '1337'
Ulimits:
- Name: "nofile"
HardLimit: 15000
SoftLimit: 15000
PortMappings:
- ContainerPort: 9901
Protocol: 'tcp'
- ContainerPort: 15000
Protocol: 'tcp'
- ContainerPort: 15001
Protocol: 'tcp'
HealthCheck:
Command:
- 'CMD-SHELL'
- 'curl -s http://localhost:9901/server_info | grep state | grep -q LIVE'
Interval: 5
Timeout: 2
Retries: 3
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-green-envoy'
Environment:
- Name: 'APPMESH_RESOURCE_ARN'
Value: !Sub 'mesh/${ProjectName}-mesh/virtualNode/color_server-green'
- Name: 'ENVOY_LOG_LEVEL'
Value: 'debug'
ColorServerBlueTaskDef:
Type: AWS::ECS::TaskDefinition
Properties:
RequiresCompatibilities:
- 'FARGATE'
Family: 'blue'
NetworkMode: 'awsvpc'
Cpu: 256
Memory: 512
TaskRoleArn: !Ref TaskIamRole
ExecutionRoleArn: !Ref TaskExecutionIamRole
ProxyConfiguration:
Type: 'APPMESH'
ContainerName: 'envoy'
ProxyConfigurationProperties:
- Name: 'IgnoredUID'
Value: '1337'
- Name: 'ProxyIngressPort'
Value: '15000'
- Name: 'ProxyEgressPort'
Value: '15001'
- Name: 'AppPorts'
Value: !Sub '${ContainerPort}'
- Name: 'EgressIgnoredIPs'
Value: '169.254.170.2,169.254.169.254'
ContainerDefinitions:
- Name: 'app'
Image: !Ref ColorServerImage
Essential: true
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-blue'
PortMappings:
- ContainerPort: !Ref ContainerPort
Protocol: 'tcp'
Environment:
- Name: 'PORT'
Value: !Sub '${ContainerPort}'
- Name: 'COLOR'
Value: 'blue'
- Name: envoy
Image: !Ref EnvoyImage
Essential: true
User: '1337'
Ulimits:
- Name: "nofile"
HardLimit: 15000
SoftLimit: 15000
PortMappings:
- ContainerPort: 9901
Protocol: 'tcp'
- ContainerPort: 15000
Protocol: 'tcp'
- ContainerPort: 15001
Protocol: 'tcp'
HealthCheck:
Command:
- 'CMD-SHELL'
- 'curl -s http://localhost:9901/server_info | grep state | grep -q LIVE'
Interval: 5
Timeout: 2
Retries: 3
LogConfiguration:
LogDriver: 'awslogs'
Options:
awslogs-group: !Sub '${ProjectName}-log-group'
awslogs-region: !Ref AWS::Region
awslogs-stream-prefix: 'color_server-blue-envoy'
Environment:
- Name: 'APPMESH_RESOURCE_ARN'
Value: !Sub 'mesh/${ProjectName}-mesh/virtualNode/color_server-blue'
- Name: 'ENVOY_LOG_LEVEL'
Value: 'debug'
ColorServerRegistry:
Type: AWS::ServiceDiscovery::Service
Properties:
Name: 'color_server'
DnsConfig:
NamespaceId:
Fn::ImportValue: !Sub '${ProjectName}:CloudMapNamespaceId'
DnsRecords:
- Type: A
TTL: 300
HealthCheckCustomConfig:
FailureThreshold: 1
ColorServerRedService:
Type: AWS::ECS::Service
Properties:
Cluster:
Fn::ImportValue: !Sub '${ProjectName}:ECSCluster'
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100
DesiredCount: 1
LaunchType: 'FARGATE'
ServiceRegistries:
- RegistryArn: !GetAtt 'ColorServerRegistry.Arn'
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: DISABLED
SecurityGroups:
- !Ref SecurityGroup
Subnets:
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet1'
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet2'
TaskDefinition: !Ref ColorServerRedTaskDef
ColorServerGreenService:
Type: AWS::ECS::Service
Properties:
Cluster:
Fn::ImportValue: !Sub '${ProjectName}:ECSCluster'
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100
DesiredCount: 1
LaunchType: 'FARGATE'
ServiceRegistries:
- RegistryArn: !GetAtt 'ColorServerRegistry.Arn'
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: DISABLED
SecurityGroups:
- !Ref SecurityGroup
Subnets:
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet1'
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet2'
TaskDefinition: !Ref ColorServerGreenTaskDef
ColorServerBlueService:
Type: AWS::ECS::Service
Properties:
Cluster:
Fn::ImportValue: !Sub '${ProjectName}:ECSCluster'
DeploymentConfiguration:
MaximumPercent: 200
MinimumHealthyPercent: 100
DesiredCount: 1
LaunchType: 'FARGATE'
ServiceRegistries:
- RegistryArn: !GetAtt 'ColorServerRegistry.Arn'
NetworkConfiguration:
AwsvpcConfiguration:
AssignPublicIp: DISABLED
SecurityGroups:
- !Ref SecurityGroup
Subnets:
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet1'
- Fn::ImportValue: !Sub '${ProjectName}:PrivateSubnet2'
TaskDefinition: !Ref ColorServerBlueTaskDef
Outputs:
PublicEndpoint:
Description: 'Public endpoint for the color client service'
Value: !Join ['', ['http://', !GetAtt 'PublicLoadBalancer.DNSName']]
Export:
Name: !Sub '${ProjectName}:PublicEndpoint'