mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 10:20:26 -07:00
Merge pull request #656 from ansible-collections/add-pubsub-update-test
Add a test that updates a pubsub subscription
This commit is contained in:
commit
a1b9e17eab
1 changed files with 15 additions and 0 deletions
|
@ -73,6 +73,21 @@
|
||||||
that:
|
that:
|
||||||
- result.changed == false
|
- result.changed == false
|
||||||
#----------------------------------------------------------
|
#----------------------------------------------------------
|
||||||
|
- name: Update a subscription
|
||||||
|
google.cloud.gcp_pubsub_subscription:
|
||||||
|
name: "{{ resource_name }}"
|
||||||
|
topic: "{{ topic }}"
|
||||||
|
ack_deadline_seconds: 60
|
||||||
|
project: "{{ gcp_project }}"
|
||||||
|
auth_kind: "{{ gcp_cred_kind }}"
|
||||||
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
||||||
|
state: present
|
||||||
|
register: result
|
||||||
|
- name: Assert changed is true
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- result.changed == true
|
||||||
|
#----------------------------------------------------------
|
||||||
- name: Delete a subscription
|
- name: Delete a subscription
|
||||||
google.cloud.gcp_pubsub_subscription:
|
google.cloud.gcp_pubsub_subscription:
|
||||||
name: "{{ resource_name }}"
|
name: "{{ resource_name }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue