Add physical_resource_id to ECS task definition

This commit is contained in:
William Richard 2018-04-04 15:05:51 -04:00
commit 4636a2afc3
No known key found for this signature in database
GPG key ID: F7F8BA4DDBE1ABED
2 changed files with 10 additions and 1 deletions

View file

@ -109,6 +109,10 @@ class TaskDefinition(BaseObject):
del response_object['arn']
return response_object
@property
def physical_resource_id(self):
return self.arn
@classmethod
def create_from_cloudformation_json(cls, resource_name, cloudformation_json, region_name):
properties = cloudformation_json['Properties']