Skip to content Skip to sidebar Skip to footer

How Can I Skip Fabric Connections That Ask For A Password?

I'm iterating over a few hundred EC2 instances but only have access to about 80% of them. I would like to skip any instances that have declined my SSH key and asked for a password.

Solution 1:

If the host is unreachable, then you can use --skip-bad-hosts option, otherwise Looks like you can use the settings context manager and try the ssh within that context manager and if the failure happens it can skip to the next one. The docs for context_manager.settings have an example.

with settings(warn_only=True):
    ssh_attempt # can fail
ssh_attemp # cannot fail

Post a Comment for "How Can I Skip Fabric Connections That Ask For A Password?"