Closed lordmauve closed 7 years ago
Groups are effectively sets of Tunnels. Now that Tunnels connect lazily, one could consider paradigms like
webservers = Group(...) load_balancers = Group(...) databases = Group(...) with webservers + load_balancers as group: group.call(install_http_monitoring)
Nice idea. Might these also make sense?:
new_group = Group(...) + Tunnel(...) new_group2 = Tunnel(...) + Tunnel(...)
Sounds good.
Groups are effectively sets of Tunnels. Now that Tunnels connect lazily, one could consider paradigms like