New GCP Module: gcp_pubsub_topic_facts (#46923)

This commit is contained in:
Alex Stephen
2018-10-18 07:01:31 -07:00
committed by Ryan Brown
parent 89f239f187
commit f47cfd2204
2 changed files with 134 additions and 1 deletions

View File

@@ -152,7 +152,10 @@ class GcpModule(AnsibleModule):
kwargs['argument_spec'] = self._merge_dictionaries(
arg_spec,
dict(
project=dict(required=True, type='str'),
project=dict(
required=True,
type='str',
fallback=(env_fallback, ['GCP_PROJECT'])),
auth_kind=dict(
required=False,
fallback=(env_fallback, ['GCP_AUTH_KIND']),