I am writing an SSH config file and want to perform a bit of logic. For example:
Host myhost1 ProxyCommand ssh -A {choose randomly between [bastion_host1] and [bastion_host2]} -W %h:%p
Is it possible to achieve the above using (bash?) variables? Thanks!