Skip to content

Commit

Permalink
Fix var naming (#55796)
Browse files Browse the repository at this point in the history
* Fix var naming in GCE guide
  • Loading branch information
stroebitzer authored and acozine committed May 8, 2019
1 parent 59d7ce6 commit dae5564
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/docsite/rst/scenario_guides/guide_gce.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ used, but you may experience issues trying to use them together.

While the community GCP modules are not going away, Google is investing effort
into the new "gcp_*" modules. Google is committed to ensuring the Ansible
community has a great experience with GCP and therefore recommends adopting
community has a great experience with GCP and therefore recommends adopting
these new modules if possible.


Expand All @@ -42,7 +42,7 @@ The Google Cloud Platform (GCP) modules require both the ``requests`` and the
$ pip install requests google-auth
Alternatively for RHEL / CentOS, the ``python-requests`` package is also
Alternatively for RHEL / CentOS, the ``python-requests`` package is also
available to satisfy ``requests`` libraries.

.. code-block:: bash
Expand Down Expand Up @@ -234,10 +234,10 @@ rest.
register: instance
- name: Wait for SSH to come up
wait_for: host={{ instance.address }} port=22 delay=10 timeout=60
wait_for: host={{ address.address }} port=22 delay=10 timeout=60
- name: Add host to groupname
add_host: hostname={{ instance.address }} groupname=new_instances
add_host: hostname={{ address.address }} groupname=new_instances
- name: Manage new instances
Expand Down Expand Up @@ -268,7 +268,7 @@ module (and more!). Below is a mapping of ``gce`` fields over to
``gcp_compute_instance`` fields.

============================ ========================================== ======================
gce.py gcp_compute_instance.py Notes
gce.py gcp_compute_instance.py Notes
============================ ========================================== ======================
state state/status State on gce has multiple values: "present", "absent", "stopped", "started", "terminated". State on gcp_compute_instance is used to describe if the instance exists (present) or does not (absent). Status is used to describe if the instance is "started", "stopped" or "terminated".
image disks[].initialize_params.source_image You'll need to create a single disk using the disks[] parameter and set it to be the boot disk (disks[].boot = true)
Expand Down

0 comments on commit dae5564

Please sign in to comment.