mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Use type=path for pem_file, since that's a file (#1934)
This commit is contained in:
committed by
Matt Clay
parent
3bbef8dc24
commit
a7b843ca80
@@ -180,7 +180,7 @@ def main():
|
|||||||
state=dict(default='present', choices=['present', 'absent']),
|
state=dict(default='present', choices=['present', 'absent']),
|
||||||
zone=dict(default='us-central1-a'),
|
zone=dict(default='us-central1-a'),
|
||||||
service_account_email=dict(),
|
service_account_email=dict(),
|
||||||
pem_file=dict(),
|
pem_file=dict(type='path'),
|
||||||
project_id=dict(),
|
project_id=dict(),
|
||||||
timeout=dict(type='int', default=180)
|
timeout=dict(type='int', default=180)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -188,7 +188,7 @@ def main():
|
|||||||
state=dict(default='present', choices=['present', 'absent']),
|
state=dict(default='present', choices=['present', 'absent']),
|
||||||
zone=dict(default='us-central1-a'),
|
zone=dict(default='us-central1-a'),
|
||||||
service_account_email=dict(),
|
service_account_email=dict(),
|
||||||
pem_file=dict(),
|
pem_file=dict(type='path'),
|
||||||
project_id=dict(),
|
project_id=dict(),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user