simplify loop

pull/632/head
Matteo Croce 2019-10-03 19:30:00 +02:00 committed by Matteo Croce
parent 1dded3b966
commit ad29810e73
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ EOF
Copy the `encryption-config.yaml` encryption config file to each controller instance: Copy the `encryption-config.yaml` encryption config file to each controller instance:
```sh ```sh
for instance in controller-0 controller-1 controller-2; do for instance in controller-{0..2}; do
gcloud compute scp encryption-config.yaml ${instance}:~/ gcloud compute scp encryption-config.yaml ${instance}:~/
done done
``` ```