From 7bcbd9be8b741da1b8b427fcb662e4c148b7ccc7 Mon Sep 17 00:00:00 2001 From: Aditya Putta Date: Wed, 6 Sep 2023 21:50:59 -0500 Subject: [PATCH] Module regarding cloudformation update --- plugins/modules/cloudformation.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/modules/cloudformation.py b/plugins/modules/cloudformation.py index f242a6cc5c4..cc6cd0e8d6b 100644 --- a/plugins/modules/cloudformation.py +++ b/plugins/modules/cloudformation.py @@ -181,6 +181,14 @@ tags: Stack: "ansible-cloudformation" +# Update a CloudFormation Stack: +- name: Update CloudFormation Stack + amazon.aws.cloudformation: + stack_name: my-stack + template: stack-template.yml + state: present + register: stack_update_result + # Basic role example - name: create a stack, specify role that cloudformation assumes amazon.aws.cloudformation: