Add Bangalore Data center and update to Ubuntu 16.04 (#14892)

This commit is contained in:
David Bouchare 2017-05-28 22:46:09 +02:00 committed by Paul Stack
parent fa1e0bab7f
commit 7b14c84a40
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Digital Ocean Droplet launch and setting the Domain records at Digital Ocean. # Digital Ocean Droplet launch and setting the Domain records at Digital Ocean.
The example launches an Ubuntu 14.04, runs apt-get update and installs nginx. Also demonstrates how to create DNS records under Domains at DigitalOcean. The example launches an Ubuntu 16.04, runs apt-get update and installs nginx. Also demonstrates how to create DNS records under Domains at DigitalOcean.
To run, configure your Digital Ocean provider as described in https://www.terraform.io/docs/providers/do/index.html To run, configure your Digital Ocean provider as described in https://www.terraform.io/docs/providers/do/index.html

View File

@ -2,7 +2,7 @@
# Current Available Datacenter Regions # Current Available Datacenter Regions
# As of 05-07-2016 # As of 28-05-2017
# #
@ -16,6 +16,11 @@ variable "do_ams3" {
default = "ams3" default = "ams3"
} }
variable "do_blr1" {
description = "Digital Ocean Bangalore Data Center 1"
default = "blr1"
}
variable "do_fra1" { variable "do_fra1" {
description = "Digital Ocean Frankfurt Data Center 1" description = "Digital Ocean Frankfurt Data Center 1"
default = "fra1" default = "fra1"
@ -60,7 +65,7 @@ variable "do_tor1" {
variable "ubuntu" { variable "ubuntu" {
description = "Default LTS" description = "Default LTS"
default = "ubuntu-14-04-x64" default = "ubuntu-16-04-x64"
} }
variable "centos" { variable "centos" {