16 lines
386 B
Bash
Executable File
16 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" == "" ]; then
|
|
echo "./run.sh commands..."
|
|
exit 1
|
|
fi
|
|
|
|
nodes=$(terraform output -json -state=terraform/terraform.tfstate | jq -r '(.linux_clients,.servers).value[]')
|
|
for node in $nodes
|
|
do
|
|
echo Executing: ssh -i terraform/keys/*.pem ubuntu@"$node" "$@"
|
|
ssh -o StrictHostKeyChecking=accept-new -i terraform/keys/*.pem ubuntu@"$node" "$@"
|
|
done
|