summaryrefslogtreecommitdiff
path: root/cloud/google
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-04-14 23:37:01 +0200
committerRené Moser <mail@renemoser.net>2016-04-14 23:37:01 +0200
commitbd0deed367b94c7aedf7d006d5a6f4d4a18ad62f (patch)
tree6734196c9563a23bc0558ce9f589876a8175ab8e /cloud/google
parent7c613c314c84b9f8b232465405bd49b496d69a39 (diff)
downloadansible-modules-extras-bd0deed367b94c7aedf7d006d5a6f4d4a18ad62f.tar.gz
Use type=path for pem_file, since that's a file (#1934)
Diffstat (limited to 'cloud/google')
-rw-r--r--cloud/google/gce_img.py2
-rw-r--r--cloud/google/gce_tag.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cloud/google/gce_img.py b/cloud/google/gce_img.py
index b64f12fe..bf3d9da5 100644
--- a/cloud/google/gce_img.py
+++ b/cloud/google/gce_img.py
@@ -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)
)
diff --git a/cloud/google/gce_tag.py b/cloud/google/gce_tag.py
index 4f60f58f..cb1f2a2c 100644
--- a/cloud/google/gce_tag.py
+++ b/cloud/google/gce_tag.py
@@ -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(),
)
)