From c9f989a3fb4df0a50777f87f11e9fac50eea6ac8 Mon Sep 17 00:00:00 2001 From: Pavlos Ratis Date: Fri, 27 Apr 2018 18:13:07 +0200 Subject: [PATCH] [website] fix Markdown formatting on GCP page (#4471) --- website/source/docs/auth/gcp.html.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/website/source/docs/auth/gcp.html.md b/website/source/docs/auth/gcp.html.md index dea286d7e2..ae3531ed46 100644 --- a/website/source/docs/auth/gcp.html.md +++ b/website/source/docs/auth/gcp.html.md @@ -452,19 +452,19 @@ configuration for the generated auth tokens. We also expose a helper path for updating the service accounts attached to an existing `iam` role: - ```sh - vault write auth/gcp/role/iam-role/service-accounts \ - add='serviceAccountToAdd,...' \ - remove='serviceAccountToRemove,...' \ - ``` +``` +$ vault write auth/gcp/role/iam-role/service-accounts \ + add='serviceAccountToAdd,...' \ + remove='serviceAccountToRemove,...' \ +``` and for updating the labels attached to an existing `gce` role: - ```sh - vault write auth/gcp/role/gce-role/labels \ - add='label1:value1,foo:bar,...' \ - remove='key1,key2,...' \ - ``` +``` +$ vault write auth/gcp/role/gce-role/labels \ + add='label1:value1,foo:bar,...' \ + remove='key1,key2,...' \ +``` See [API docs](/api/auth/gcp/index.html#create-role) to view