Skip to content

Commit

Permalink
Merge pull request #61 from kyletbase2/master
Browse files Browse the repository at this point in the history
Added Start and Stop timeout parameters
  • Loading branch information
Guslington authored Apr 13, 2021
2 parents d39ec4c + 4d2cabb commit 434507d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ecs-service.cfndsl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@
task_def.merge!({ Cpu: task['cpu'] }) if task.has_key?('cpu')

task_def.merge!({ Ulimits: task['ulimits'] }) if task.has_key?('ulimits')

task_def.merge!({ StartTimeout: task['start_timeout'] }) if task.has_key?('start_timeout')
task_def.merge!({ StopTimeout: task['stop_timeout'] }) if task.has_key?('stop_timeout')



Expand Down

0 comments on commit 434507d

Please sign in to comment.