Require terraform-provider-digitalocean plugin ~> 1.0

* Require a terraform-provider-digitalocean plugin version of
1.0 or higher within the same major version (e.g. allow 1.1 but
not 2.0)
* Change requirement from ~> 0.1.2 (which allowed up to but not
including 1.0 release)
This commit is contained in:
Dalton Hubble 2018-10-02 16:41:53 +02:00
parent 7653e511be
commit db36036c81
5 changed files with 8 additions and 4 deletions

View File

@ -7,6 +7,10 @@ Notable changes between versions.
* Update CoreDNS from 1.1.3 to 1.2.2 * Update CoreDNS from 1.1.3 to 1.2.2
* Update Calico from v3.2.1 to v3.2.3 * Update Calico from v3.2.1 to v3.2.3
#### DigitalOcean
* Require terraform-provider-digitalocean plugin 1.0 (or higher but < 2.0)
#### Addons #### Addons
* Update Prometheus from v2.3.2 to v2.4.2 * Update Prometheus from v2.3.2 to v2.4.2

View File

@ -5,7 +5,7 @@ terraform {
} }
provider "digitalocean" { provider "digitalocean" {
version = "~> 0.1.2" version = "~> 1.0"
} }
provider "local" { provider "local" {

View File

@ -5,7 +5,7 @@ terraform {
} }
provider "digitalocean" { provider "digitalocean" {
version = "~> 0.1.2" version = "~> 1.0"
} }
provider "local" { provider "local" {

View File

@ -45,7 +45,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.
```tf ```tf
provider "digitalocean" { provider "digitalocean" {
version = "0.1.3" version = "1.0.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}" token = "${chomp(file("~/.config/digital-ocean/token"))}"
alias = "default" alias = "default"
} }

View File

@ -58,7 +58,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.
```tf ```tf
provider "digitalocean" { provider "digitalocean" {
version = "0.1.3" version = "1.0.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}" token = "${chomp(file("~/.config/digital-ocean/token"))}"
alias = "default" alias = "default"
} }