mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-08-22 14:01:49 -07:00
auth_kind should be required: true (#306)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
c946e77783
commit
da912bcb6c
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ class GcpModule(AnsibleModule):
|
||||||
type='str',
|
type='str',
|
||||||
fallback=(env_fallback, ['GCP_PROJECT'])),
|
fallback=(env_fallback, ['GCP_PROJECT'])),
|
||||||
auth_kind=dict(
|
auth_kind=dict(
|
||||||
required=False,
|
required=True,
|
||||||
fallback=(env_fallback, ['GCP_AUTH_KIND']),
|
fallback=(env_fallback, ['GCP_AUTH_KIND']),
|
||||||
choices=['machineaccount', 'serviceaccount', 'application'],
|
choices=['machineaccount', 'serviceaccount', 'application'],
|
||||||
type='str'),
|
type='str'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue