serverless-fargate-tasks
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -29,3 +29,3 @@ 'use strict'; | ||
'Properties': { | ||
'Tags': this.serverless.service.provider.stackTags, | ||
'Tags': Object.entries(this.serverless.service.provider.stackTags).map(function(t) { return {Key: t[0], Value: t[1]}}), | ||
} | ||
@@ -110,3 +110,3 @@ } | ||
'Cpu': options.tasks[identifier]['cpu'] || 256, | ||
'Tags': this.serverless.service.provider.stackTags, | ||
'Tags': Object.entries(this.serverless.service.provider.stackTags).map(function(t) { return {Key: t[0], Value: t[1]}}), | ||
}, task_override) | ||
@@ -140,3 +140,3 @@ } | ||
}, | ||
'Tags': this.serverless.service.provider.stackTags, | ||
'Tags': Object.entries(this.serverless.service.provider.stackTags).map(function(t) { return {Key: t[0], Value: t[1]}}), | ||
}, service_override) | ||
@@ -143,0 +143,0 @@ } |
@@ -17,3 +17,3 @@ { | ||
}, | ||
"version": "0.6.0" | ||
"version": "0.6.1" | ||
} |
9122