I want to list nodes in ec2 region using libcoud. How do I do that? Below gives east only.
Driver = get_driver(Provider.EC2)
conn = Driver(key, secret)
conn.list_nodes()
I want to list nodes in ec2 region using libcoud. How do I do that? Below gives east only.
Driver = get_driver(Provider.EC2)
conn = Driver(key, secret)
conn.list_nodes()
You can get the relevant driver for that region:
Taken from the bottom example in this documentation page.