Commit 0cd7b590 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #1743 from ryanuber/do-nyc3

builder/digitalocean: default to nyc3
parents 9cd66fee 010c77d0
...@@ -21,8 +21,8 @@ import ( ...@@ -21,8 +21,8 @@ import (
const DefaultImage = "ubuntu-12-04-x64" const DefaultImage = "ubuntu-12-04-x64"
// see https://api.digitalocean.com/regions/?client_id=[client_id]&api_key=[api_key] // see https://api.digitalocean.com/regions/?client_id=[client_id]&api_key=[api_key]
// name="New York", id=1 // name="New York 3", id=8
const DefaultRegion = "nyc1" const DefaultRegion = "nyc3"
// see https://api.digitalocean.com/sizes/?client_id=[client_id]&api_key=[api_key] // see https://api.digitalocean.com/sizes/?client_id=[client_id]&api_key=[api_key]
// name="512MB", id=66 (the smallest droplet size) // name="512MB", id=66 (the smallest droplet size)
......
...@@ -66,7 +66,7 @@ each category, the available configuration keys are alphabetized. ...@@ -66,7 +66,7 @@ each category, the available configuration keys are alphabetized.
* `region` (string) - The name (or slug) of the region to launch the droplet in. * `region` (string) - The name (or slug) of the region to launch the droplet in.
Consequently, this is the region where the snapshot will be available. Consequently, this is the region where the snapshot will be available.
This defaults to "nyc1", which is the slug for "New York 1". This defaults to "nyc3", which is the slug for "New York 3".
See https://developers.digitalocean.com/regions/ for the accepted region names/slugs. See https://developers.digitalocean.com/regions/ for the accepted region names/slugs.
* `region_id` (integer) - The ID of the region to launch the droplet in. Consequently, * `region_id` (integer) - The ID of the region to launch the droplet in. Consequently,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment