Всех приветствую!
Подскажите, пожалуйста, хочу из terraform вывести output ip-адрес в файл, чтобы было возможность через ansible запускать команды
Пример:
for num in 1
do
printf «worker-$num ansible_host=»
terraform output -json workers_public_ip | jq -j ".[$num-1]"
printf " ip="
terraform output -json workers_public_ip | jq -j ".[$num-1]"
printf «\n»
done