mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 04:09:34 +01:00
7c6ab21b94
* DigitalOcean introduced Virtual Private Cloud (VPC) support to match other clouds and enhance the prior "private networking" feature. Before, droplet's belonging to different clusters (but residing in the same region) could reach one another (although Typhoon firewall rules prohibit this). Now, droplets in a VPC reside in their own network * https://www.digitalocean.com/docs/networking/vpc/ * Create droplet instances in a VPC per cluster. This matches the design of Typhoon AWS, Azure, and GCP. * Require `terraform-provider-digitalocean` v1.16.0+ (action required) * Output `vpc_id` for use with an attached DigitalOcean loadbalancer
13 lines
229 B
HCL
13 lines
229 B
HCL
# Terraform version and plugin versions
|
|
|
|
terraform {
|
|
required_version = "~> 0.12.6"
|
|
required_providers {
|
|
digitalocean = "~> 1.16"
|
|
ct = "~> 0.4"
|
|
template = "~> 2.1"
|
|
null = "~> 2.1"
|
|
}
|
|
}
|
|
|