Skip to content

Commit

Permalink
cloudformation - remove unused template_format parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed May 24, 2022
1 parent b002515 commit 223adca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/64368-cloudformation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
removed_features:
- cloudformation - the ``template_format`` option has been removed. It has been ignored by the module since Ansible 2.3 (https://github.com/ansible-collections/amazon.aws/pull/833).
6 changes: 0 additions & 6 deletions plugins/modules/cloudformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,6 @@
See the AWS Change Sets docs for more information
U(https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html)
type: str
template_format:
description:
- This parameter is ignored since Ansible 2.3 and will be removed after 2022-06-01.
- Templates are now passed raw to CloudFormation regardless of format.
type: str
role_arn:
description:
- The role that AWS CloudFormation assumes to create the stack. See the AWS CloudFormation Service Role
Expand Down Expand Up @@ -637,7 +632,6 @@ def main():
create_timeout=dict(default=None, type='int'),
template_url=dict(default=None, required=False),
template_body=dict(default=None, required=False),
template_format=dict(removed_at_date='2022-06-01', removed_from_collection='amazon.aws'),
create_changeset=dict(default=False, type='bool'),
changeset_name=dict(default=None, required=False),
role_arn=dict(default=None, required=False),
Expand Down

0 comments on commit 223adca

Please sign in to comment.