Use type=path for pem_file, since that's a file (#1934)
This commit is contained in:
parent
3bbef8dc24
commit
a7b843ca80
2 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ def main():
|
|||
state=dict(default='present', choices=['present', 'absent']),
|
||||
zone=dict(default='us-central1-a'),
|
||||
service_account_email=dict(),
|
||||
pem_file=dict(),
|
||||
pem_file=dict(type='path'),
|
||||
project_id=dict(),
|
||||
timeout=dict(type='int', default=180)
|
||||
)
|
||||
|
|
|
@ -188,7 +188,7 @@ def main():
|
|||
state=dict(default='present', choices=['present', 'absent']),
|
||||
zone=dict(default='us-central1-a'),
|
||||
service_account_email=dict(),
|
||||
pem_file=dict(),
|
||||
pem_file=dict(type='path'),
|
||||
project_id=dict(),
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue