Closed inspire22 closed 10 years ago
I don't think it was, but I'm not 100% sure.
The way to do these is actually to just use a comma delimited string. See this example here:
https://github.com/scottmotte/digitalocean/blob/master/spec/digitalocean/droplet_spec.rb#L119
Confirmed working with csv. Thanks!
This was working awhile ago (before 1.0.2 or so I think, but not sure), but has been failing recently.
Digitalocean::Droplet.create( {:name => "#{name}.asdf.com", :size_id => 66, :image_id => 333333, :region_id => 4, :ssh_key_ids => [121212, 121213], :private_networking => true})
-> droplet is created with all settings correct except no ssh keys included. I get an email with the root password, which breaks my auto-growing scripts/etc.
I don't see any official API change here https://developers.digitalocean.com/droplets/
Thanks for a great project :)