Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 449 Bytes

06-data-encryption-keys.md

File metadata and controls

15 lines (12 loc) · 449 Bytes

Generating the Data Encryption Config and Key

The Encryption Config File

Use this command to send encryption-config.yaml to your controllers:

for idx in $(seq 0 2);
do
  ip=$(az network public-ip show -g kubernetes -n "controller-${idx}PublicIP" --query 'ipAddress' -o tsv)
  scp -i kthw_ssh_key -o StrictHostKeyChecking=no \
      -o UserKnownHostsFile=/dev/null \
      "encryption-config.yaml" "ubuntu@$ip:/home/ubuntu/"
done