Note
This plugin is part of the community.google collection (version 1.0.0).
To install it use: ansible-galaxy collection install community.google
.
To use it in a playbook, specify: community.google.gcpubsub_info
.
gcpubsub_facts
before Ansible 2.9. The usage did not change.The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments |
---|---|---|
credentials_file string | path to the JSON file associated with the service account email | |
project_id string | your GCE project ID | |
service_account_email string | service account email | |
state string |
| list is the only valid option. |
topic string | GCP pubsub topic name. Only the name, not the full path, is required. | |
view string |
| Choices are 'topics' or 'subscriptions' |
Note
- name: List all Topics in a project community.google.gcpubsub_info: view: topics state: list - name: List all Subscriptions in a project community.google.gcpubsub_info: view: subscriptions state: list - name: List all Subscriptions for a Topic in a project community.google.gcpubsub_info: view: subscriptions topic: my-topic state: list
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
subscriptions list / elements=string | When view is set to subscriptions. | List of subscriptions. Sample: ['mysubscription', 'mysubscription2'] |
topic string | Always | Name of topic. Used to filter subscriptions. Sample: mytopic |
topics list / elements=string | When view is set to topics. | List of topics. Sample: ['mytopic', 'mytopic2'] |
© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.11/collections/community/google/gcpubsub_info_module.html