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

reviewable/pr18780/r1
Michael Scherer 9 years ago committed by René Moser
parent 7c613c314c
commit bd0deed367

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

Loading…
Cancel
Save