Use type=path for pem_file, since that's a file (#1934)

This commit is contained in:
Michael Scherer 2016-04-14 23:37:01 +02:00 committed by Matt Clay
parent 3bbef8dc24
commit a7b843ca80
2 changed files with 2 additions and 2 deletions

View file

@ -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)
)

View file

@ -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(),
)
)