From 7a2d7e42a70c914509ef0f59aea8f2b6c923561e Mon Sep 17 00:00:00 2001 From: andf-mongodb Date: Thu, 8 Apr 2021 14:05:16 -0400 Subject: [PATCH] DOCSP-15532 fix v4.4.5 merge NextGen addl fixes --- source/includes/steps-csfle-shell-aws-create-key.yaml | 2 +- source/includes/steps-csfle-shell-azure-create-key.yaml | 2 +- source/includes/steps-csfle-shell-gcp-create-key.yaml | 2 +- source/includes/steps-csfle-shell-local-create-key.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/includes/steps-csfle-shell-aws-create-key.yaml b/source/includes/steps-csfle-shell-aws-create-key.yaml index 3f087351235..bed2d4f436d 100644 --- a/source/includes/steps-csfle-shell-aws-create-key.yaml +++ b/source/includes/steps-csfle-shell-aws-create-key.yaml @@ -23,7 +23,7 @@ content: | :option:`--eval `, :option:`--shell `, and :option:`--nodb ` options: - .. code-block:: shell + .. code-block:: bash mongo --eval " var AWS_ACCESS_KEY_ID = '$AWS_ACCESS_KEY_ID' diff --git a/source/includes/steps-csfle-shell-azure-create-key.yaml b/source/includes/steps-csfle-shell-azure-create-key.yaml index 0ad590e4702..bb5d19330de 100644 --- a/source/includes/steps-csfle-shell-azure-create-key.yaml +++ b/source/includes/steps-csfle-shell-azure-create-key.yaml @@ -22,7 +22,7 @@ content: | :option:`--eval `, :option:`--shell `, and :option:`--nodb ` options: - .. code-block:: shell + .. code-block:: bash mongo --eval " var AZURE_TENANT_ID = '$AZURE_TENANT_ID' diff --git a/source/includes/steps-csfle-shell-gcp-create-key.yaml b/source/includes/steps-csfle-shell-gcp-create-key.yaml index 8d998874397..ff865a9d3b0 100644 --- a/source/includes/steps-csfle-shell-gcp-create-key.yaml +++ b/source/includes/steps-csfle-shell-gcp-create-key.yaml @@ -21,7 +21,7 @@ content: | :option:`--eval `, :option:`--shell `, and :option:`--nodb ` options: - .. code-block:: shell + .. code-block:: bash mongo --eval " var GCP_EMAIL = '$GCP_EMAIL' diff --git a/source/includes/steps-csfle-shell-local-create-key.yaml b/source/includes/steps-csfle-shell-local-create-key.yaml index 7c5e6c55998..f9f46c95a8b 100644 --- a/source/includes/steps-csfle-shell-local-create-key.yaml +++ b/source/includes/steps-csfle-shell-local-create-key.yaml @@ -16,7 +16,7 @@ content: | requirements and adds it to the user's ``~/.profile``. If the key ``DEV_LOCAL_KEY`` already exists, skip this operation. - .. code-block:: shell + .. code-block:: bash echo "export DEV_LOCAL_KEY=\"$(head -c 96 /dev/urandom | base64 | tr -d '\n')\"" >> ~/.profile @@ -41,7 +41,7 @@ content: | `, :option:`--shell `, and :option:`--nodb ` options: - .. code-block:: shell + .. code-block:: bash mongo --eval "var LOCAL_KEY = '$DEV_LOCAL_KEY' " \ --shell --nodb