Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Require terraform-provider-digitalocean plugin ~> 1.0
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
dghubble committed Oct 2, 2018
1 parent 7653e51 commit db36036
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Notable changes between versions.
* Update CoreDNS from 1.1.3 to 1.2.2
* Update Calico from v3.2.1 to v3.2.3

#### DigitalOcean

* Require terraform-provider-digitalocean plugin 1.0 (or higher but < 2.0)

#### Addons

* Update Prometheus from v2.3.2 to v2.4.2
Expand Down
2 changes: 1 addition & 1 deletion digital-ocean/container-linux/kubernetes/require.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
}

provider "digitalocean" {
version = "~> 0.1.2"
version = "~> 1.0"
}

provider "local" {
Expand Down
2 changes: 1 addition & 1 deletion digital-ocean/fedora-atomic/kubernetes/require.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ terraform {
}

provider "digitalocean" {
version = "~> 0.1.2"
version = "~> 1.0"
}

provider "local" {
Expand Down
2 changes: 1 addition & 1 deletion docs/atomic/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.

```tf
provider "digitalocean" {
version = "0.1.3"
version = "1.0.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}"
alias = "default"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Configure the DigitalOcean provider to use your token in a `providers.tf` file.

```tf
provider "digitalocean" {
version = "0.1.3"
version = "1.0.0"
token = "${chomp(file("~/.config/digital-ocean/token"))}"
alias = "default"
}
Expand Down

0 comments on commit db36036

Please sign in to comment.