From ea04d05a1e8b982090500e2fe77caf43c0d27b83 Mon Sep 17 00:00:00 2001 From: taso <74918216+tasoint@users.noreply.github.com> Date: Tue, 4 Oct 2022 18:19:13 +0900 Subject: [PATCH] Docs: Typo in Alibaba Cloud Compute Services Guide (#78984) --- docs/docsite/rst/scenario_guides/guide_alicloud.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/scenario_guides/guide_alicloud.rst b/docs/docsite/rst/scenario_guides/guide_alicloud.rst index c91eaf7f325..fed9b0dd413 100644 --- a/docs/docsite/rst/scenario_guides/guide_alicloud.rst +++ b/docs/docsite/rst/scenario_guides/guide_alicloud.rst @@ -35,13 +35,17 @@ To pass authentication credentials as environment variables:: export ALICLOUD_ACCESS_KEY='Alicloud123' export ALICLOUD_SECRET_KEY='AlicloudSecret123' -To store authentication credentials in a vars_file, encrypt them with :ref:`Ansible Vault` to keep them secure, then list them:: +To store authentication credentials in a vars_files, encrypt them with :ref:`Ansible Vault` to keep them secure, then list them: + +.. code-block:: yaml --- alicloud_access_key: "--REMOVED--" alicloud_secret_key: "--REMOVED--" -Note that if you store your credentials in a vars_file, you need to refer to them in each Alicloud module. For example:: +Note that if you store your credentials in a vars_files, you need to refer to them in each Alicloud module. For example: + +.. code-block:: yaml - ali_instance: alicloud_access_key: "{{alicloud_access_key}}"