From 0323df6c55b48a0ef585fb8b43953c1fb467cfb2 Mon Sep 17 00:00:00 2001 From: Alex Kennedy Date: Thu, 21 Mar 2019 08:12:52 -0700 Subject: [PATCH] Add systemControls to aws.ecs actor (#473) --- kingpin/actors/aws/ecs.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kingpin/actors/aws/ecs.py b/kingpin/actors/aws/ecs.py index bf44bbca..29901edd 100644 --- a/kingpin/actors/aws/ecs.py +++ b/kingpin/actors/aws/ecs.py @@ -109,6 +109,16 @@ class ServiceNotFound(exceptions.RecoverableActorFailure): } } }, + 'systemControls': { + 'type': 'array', + 'items': { + 'type': 'object', + 'properties': { + 'namespace': {'type': 'string'}, + 'value': {'type': 'string'} + } + } + }, 'volumesFrom': { 'type': 'array', 'items': {