From bb72b8f1d95a345c7e1b5e4fed61e7ecb9defed5 Mon Sep 17 00:00:00 2001 From: John Mahowald <14261342+jpmahowald@users.noreply.github.com> Date: Wed, 13 Nov 2019 11:39:20 -0600 Subject: [PATCH] Syntax fix guide_gce.rst (#64779) Fix syntax for create a GCP instance example playbook. Fix task indentation. --- docs/docsite/rst/scenario_guides/guide_gce.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docsite/rst/scenario_guides/guide_gce.rst b/docs/docsite/rst/scenario_guides/guide_gce.rst index d216e55a773..82eb4395860 100644 --- a/docs/docsite/rst/scenario_guides/guide_gce.rst +++ b/docs/docsite/rst/scenario_guides/guide_gce.rst @@ -234,11 +234,11 @@ rest. - https://www.googleapis.com/auth/compute register: instance - - name: Wait for SSH to come up - wait_for: host={{ address.address }} port=22 delay=10 timeout=60 + - name: Wait for SSH to come up + wait_for: host={{ address.address }} port=22 delay=10 timeout=60 - - name: Add host to groupname - add_host: hostname={{ address.address }} groupname=new_instances + - name: Add host to groupname + add_host: hostname={{ address.address }} groupname=new_instances - name: Manage new instances