Skip to content

Commit

Permalink
fix update from legacy (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws authored Jan 22, 2024
1 parent b433c5e commit 52b0abe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cfn-templates/cid-cfn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -468,12 +468,12 @@ Resources:
def lambda_handler(event, context):
url = event.get('ResponseURL')
json_body = json.dumps({
'Status': 'SUCCESS'
'Reason': 'legacy'
'PhysicalResourceId': 'keep_it_constant'
'StackId': event.get('StackId')
'RequestId': event.get('RequestId')
'LogicalResourceId': event.get('LogicalResourceId')
'Status': 'SUCCESS',
'Reason': 'legacy',
'PhysicalResourceId': 'keep_it_constant',
'StackId': event.get('StackId'),
'RequestId': event.get('RequestId'),
'LogicalResourceId': event.get('LogicalResourceId'),
})
try:
http = urllib3.PoolManager()
Expand Down

0 comments on commit 52b0abe

Please sign in to comment.