From f4be938cbad592c012b90ef27740feea51eb2a79 Mon Sep 17 00:00:00 2001 From: Xander Grzywinski Date: Thu, 23 May 2019 14:40:53 -0700 Subject: [PATCH] updated 06-data-encryption-keys --- docs/06-data-encryption-keys.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/06-data-encryption-keys.md b/docs/06-data-encryption-keys.md index 233bce2..ac13826 100644 --- a/docs/06-data-encryption-keys.md +++ b/docs/06-data-encryption-keys.md @@ -36,7 +36,8 @@ Copy the `encryption-config.yaml` encryption config file to each controller inst ``` for instance in controller-0 controller-1 controller-2; do - gcloud compute scp encryption-config.yaml ${instance}:~/ + EXTERNAL_IP=$(az vm show --show-details -g kubernetes-the-hard-way -n ${instance} --output tsv | cut -f19) + scp encryption-config.yaml azureuser@${EXTERNAL_IP}:~/ done ```