From 0bb10ea0a24643683866d2e2282d6bdee8fd20cd Mon Sep 17 00:00:00 2001 From: Frostebite Date: Wed, 20 Apr 2022 20:27:42 +0100 Subject: [PATCH] per provider container defaults --- dist/cloud-formations/task-def-formation.yml | 8 ++++---- .../providers/aws/cloud-formations/task-def-formation.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dist/cloud-formations/task-def-formation.yml b/dist/cloud-formations/task-def-formation.yml index 25c73b84..79e783f8 100644 --- a/dist/cloud-formations/task-def-formation.yml +++ b/dist/cloud-formations/task-def-formation.yml @@ -23,12 +23,12 @@ Parameters: Default: 80 Description: What port number the application inside the docker container is binding to ContainerCpu: - Type: String - Default: '1024' + Type: Number + Default: 1024 Description: How much CPU to give the container. 1024 is 1 CPU ContainerMemory: - Type: String - Default: '2048' + Type: Number + Default: 2048 Description: How much memory in megabytes to give the container BUILDGUID: Type: String diff --git a/src/model/cloud-runner/providers/aws/cloud-formations/task-def-formation.yml b/src/model/cloud-runner/providers/aws/cloud-formations/task-def-formation.yml index 2a690dbb..fae6cf4e 100644 --- a/src/model/cloud-runner/providers/aws/cloud-formations/task-def-formation.yml +++ b/src/model/cloud-runner/providers/aws/cloud-formations/task-def-formation.yml @@ -23,12 +23,12 @@ Parameters: Default: 80 Description: What port number the application inside the docker container is binding to ContainerCpu: - Type: String - Default: '1024' + Type: Number + Default: 1024 Description: How much CPU to give the container. 1024 is 1 CPU ContainerMemory: - Type: String - Default: '2048' + Type: Number + Default: 2048 Description: How much memory in megabytes to give the container BUILDGUID: Type: String