-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Labels
Description
It would be nice be able to manage DNS records using tugboat too
I am doing a workaround (sorry not good at ruby) right now using:
tugboat create server.domain.tld -i 303619 -r 2 -k 32527
Wait till server becomes active:
tugboat wait server.domain.tld --state active
Get the IP address from
tugboat info "#{SERVER_TO_DEPLOY}" |grep IP|awk {'print $2'}
And then use a curl script (using digital ocean API) to update DNS records.
I forked the repository to see if I can do it by myself but I don't know where to start.
Any tip or idea?
Thanks for your time