auth_kind should be required: true (#306)

Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
The Magician 2019-07-11 12:18:03 -07:00 committed by Alex Stephen
parent c946e77783
commit da912bcb6c

View file

@ -194,7 +194,7 @@ class GcpModule(AnsibleModule):
type='str',
fallback=(env_fallback, ['GCP_PROJECT'])),
auth_kind=dict(
required=False,
required=True,
fallback=(env_fallback, ['GCP_AUTH_KIND']),
choices=['machineaccount', 'serviceaccount', 'application'],
type='str'),