Merge pull request #4231 from phy1729/cfn-iam-capabilities

Support CAPABILITY_NAMED_IAM in AWS CloudFormation module
reviewable/pr18780/r1
Ryan Brown 8 years ago committed by GitHub
commit 95c67dc72a

@ -319,7 +319,7 @@ def main():
stack_policy_body=stack_policy_body, stack_policy_body=stack_policy_body,
template_url=template_url, template_url=template_url,
disable_rollback=disable_rollback, disable_rollback=disable_rollback,
capabilities=['CAPABILITY_IAM'], capabilities=['CAPABILITY_IAM', 'CAPABILITY_NAMED_IAM'],
**kwargs) **kwargs)
operation = 'CREATE' operation = 'CREATE'
except Exception as err: except Exception as err:
@ -342,7 +342,7 @@ def main():
stack_policy_body=stack_policy_body, stack_policy_body=stack_policy_body,
disable_rollback=disable_rollback, disable_rollback=disable_rollback,
template_url=template_url, template_url=template_url,
capabilities=['CAPABILITY_IAM']) capabilities=['CAPABILITY_IAM', 'CAPABILITY_NAMED_IAM'])
operation = 'UPDATE' operation = 'UPDATE'
except Exception as err: except Exception as err:
error_msg = boto_exception(err) error_msg = boto_exception(err)

Loading…
Cancel
Save