2021-02-17 16:56:41 -05:00
|
|
|
#!/usr/bin/env python
|
2021-02-04 17:42:55 -05:00
|
|
|
import os
|
|
|
|
import digitalocean
|
|
|
|
|
|
|
|
TOKEN_FILE = "/srv/secrets-newsblur/keys/digital_ocean.token"
|
|
|
|
|
|
|
|
with open(TOKEN_FILE) as f:
|
|
|
|
token = f.read().strip()
|
|
|
|
os.environ['DO_API_TOKEN'] = token
|
|
|
|
|
|
|
|
manager = digitalocean.Manager(token=token)
|
|
|
|
my_droplets = manager.get_all_droplets()
|
2021-02-17 16:56:41 -05:00
|
|
|
consul_manager_droplet = [d for d in my_droplets if d.name.startswith("consul-manager")][0]
|
2021-02-11 20:59:07 -05:00
|
|
|
consul_manager_ip_address = consul_manager_droplet.private_ip_address
|
2021-02-04 17:42:55 -05:00
|
|
|
|
2021-02-10 18:38:38 -05:00
|
|
|
print(consul_manager_ip_address)
|
|
|
|
|
|
|
|
# # write or overwrite the consul-manager ip
|
|
|
|
# if "consul_manager_ip.txt" not in os.listdir('/srv/newsblur/consul/'):
|
|
|
|
# with open('/srv/newsblur/consul/consul_manager_ip.txt', 'w') as f:
|
|
|
|
# f.write(consul_manager_ip_address)
|