Ansible cloudformation update stack
I'm trying to update a cloudformation stack with just a param value that I need to change via Ansible. The stack is previously created and has about 20 input params, but I just need to update the value for one. I tried the following: - name: update cloudformation: stack_name: "{{ stack_name }}" state: present region: "{{ region }}" disable_rollback: false args: template_parameters: CreateAlarms: "{{ create_alarms }}" When I run it, the play throws an error stating that it expects values for the other template params. From the ansible documentation here http://docs.ansible.com/ansible/latest