summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstroebitzer <hubstr@gmail.com>2019-05-08 20:51:18 +0200
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2019-05-08 13:51:18 -0500
commitdae5564e2b9f5c3cc8782dc6cac57e9402859f8d (patch)
tree1b7dbebb38381d5c37250bc52c57fb7d2de6bad6
parent59d7ce6c3be802d24e91b1c589dfab0b4e0afcd4 (diff)
downloadansible-dae5564e2b9f5c3cc8782dc6cac57e9402859f8d.tar.gz
Fix var naming (#55796)
* Fix var naming in GCE guide
-rw-r--r--docs/docsite/rst/scenario_guides/guide_gce.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/docsite/rst/scenario_guides/guide_gce.rst b/docs/docsite/rst/scenario_guides/guide_gce.rst
index 286463adb6..39ac95b774 100644
--- a/docs/docsite/rst/scenario_guides/guide_gce.rst
+++ b/docs/docsite/rst/scenario_guides/guide_gce.rst
@@ -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.
@@ -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
@@ -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
@@ -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)