Merge pull request #1551 from william-richard/add-physical-resource-id-to-ecs-task-definition

Add physical_resource_id to ECS task definition
This commit is contained in:
Steve Pulec 2018-04-12 18:48:43 -04:00 committed by GitHub
commit 97708fdbed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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']