aws-nakama-stack/cloudformation/nakama/task.yaml

61 lines
1.7 KiB
YAML
Raw Normal View History

2019-10-23 07:03:54 +02:00
AWSTemplateFormatVersion: '2010-09-09'
Description: Nakama ECS Task
Parameters:
ServerName:
Type: String
Default: "nakama-default"
DatabaseUsername:
Type: String
Description: Username of the Postgres server
Default: postgres
DatabasePassword:
Type: String
Description: Password for the Postgres server
DatabaseEndpoint:
Type: String
Description: Endpoint for the Postgres server
DatabasePort:
Type: Number
Description: Port for the Postgres server
Default: 5432
Resources:
LogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 7
LogGroupName: "sumu-nakama"
TaskDefinition:
Type: AWS::ECS::TaskDefinition
Properties:
ContainerDefinitions:
- Name: nakama
Essential: 'true'
Image: "heroiclabs/nakama:2.7.0"
MemoryReservation: 800
PortMappings:
- HostPort: 0
ContainerPort: 7349
- HostPort: 0
ContainerPort: 7350
- HostPort: 0
ContainerPort: 7351
LogConfiguration:
LogDriver: awslogs
Options:
awslogs-region:
Ref: AWS::Region
awslogs-group:
Ref: LogGroup
EntryPoint:
- "/bin/sh"
- "-ecx"
- Fn::Sub: |
/nakama/nakama migrate up --database.address ${DatabaseUsername}:${DatabasePassword}@${DatabaseEndpoint}:${DatabasePort} &&
exec /nakama/nakama --name ${ServerName} --database.address ${DatabaseUsername}:${DatabasePassword}@${DatabaseEndpoint}:${DatabasePort}
Outputs:
TaskArn:
Description: ARN of the TaskDefinition
Value: !Ref TaskDefinition