From b4533c880b7e0de13b51592c7f43ea092ff5cd55 Mon Sep 17 00:00:00 2001 From: Eric Johnson Date: Sun, 13 Oct 2013 13:41:55 -0700 Subject: [PATCH] address a few review comments --- cloud/gce | 4 ++-- cloud/gce_lb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/gce b/cloud/gce index 7f13751f813..5b66bebad7a 100644 --- a/cloud/gce +++ b/cloud/gce @@ -222,7 +222,7 @@ def create_instances(module, gce, instance_names): """Creates new instances. Attributes other than instance_names are picked up from 'module' - module : AnsbileModule object + module : AnsibleModule object gce: authenticated GCE libcloud driver instance_names: python list of instance names to create @@ -346,7 +346,7 @@ def main(): metadata = dict(), name = dict(), network = dict(default='default'), - persistent_boot_disk = dict(choices=BOOLEANS, default=False), + persistent_boot_disk = dict(type='bool', choices=BOOLEANS, default=False), state = dict(choices=['active', 'present', 'absent', 'deleted'], default='present'), tags = dict(type='list'), diff --git a/cloud/gce_lb b/cloud/gce_lb index d5205ff30ed..97e82fce19d 100644 --- a/cloud/gce_lb +++ b/cloud/gce_lb @@ -21,7 +21,7 @@ DOCUMENTATION = ''' module: gce_lb short_description: create/destroy GCE load-balancer resources description: - - This module can create and destroy Google Compue Engine C(loadbalancer) + - This module can create and destroy Google Compute Engine C(loadbalancer) and C(httphealthcheck) resources. The primary LB resource is the C(load_balancer) resource and the health check parameters are all prefixed with I(httphealthcheck).