Joshua Cooper
Joshua Cooper
Hey @shortdudey123, This is what I use to pull my premade keys from DO. https://gist.github.com/CloudCowboyCo/5eb34bec6ecc9a68f249 I couldn't tell if you were trying to hand off the key on creation. If...
Sorry, I saw the value as nil when returned. I should have read more closely. This is how I accomplish spinning up a droplet with my keys already on the...
Hey Tim, `client = DropletKit::Client.new(access_token: token)` `droplet = DropletKit::Droplet.new(name: config[:name], region: config[:region], size: config[:size], image: config[:image], user_data: config[:user_data], ssh_keys: config[:ssh_keys].to_s.split, private_networking: config[:private_networking])` `create = client.droplets.create(droplet)` `while client.droplets.find(id: create.id.to_s).status != 'active'...