Browse Source

Add workers count setting to awsdeploy.yml

pull/841/head
Maksym Komar 4 years ago
parent
commit
5291f9d030
1 changed files with 10 additions and 0 deletions
  1. 10
      awsdeploy.yml

10
awsdeploy.yml

@ -95,6 +95,10 @@ Resources:
- !Ref EMailHostPassword
- |+
- sudo tee -a /env.list <<< WORKERS=
- !Ref WorkersCount
- |+
- |
sudo docker pull doccano/doccano:latest
- |
@ -276,6 +280,12 @@ Parameters:
MinLength: 1
MaxLength: 5
AllowedPattern: '^\d+$'
WorkersCount:
Description: Workers Count
Type: String
MinLength: 1
MaxLength: 3
AllowedPattern: '^\d+$'
Outputs:
PublicDNS:
Value: !GetAtt

Loading…
Cancel
Save