Skip to content

Commit

Permalink
fix: update and pin kubernetes provider to >= 1.11.1 (#453)
Browse files Browse the repository at this point in the history
* update and pin kubernetes provider to >= 1.11.1

* a more enlightened version constraint

* version spec tf will grok

* version spec meeting all needs

Co-authored-by: Eric UW <erich-uw@macky.local>
  • Loading branch information
EricHorst and Eric UW committed Mar 19, 2020
1 parent ec864f1 commit 418d9b3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion autogen/main/auth.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion examples/workload_identity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ provider "google" {
}

provider "kubernetes" {
version = "~> 1.10"
version = "~> 1.10, != 1.11.0"
host = module.gke.endpoint
token = data.google_client_config.default.access_token
cluster_ca_certificate = base64decode(module.gke.ca_certificate)
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-private-cluster-update-variant/auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-private-cluster/auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion modules/beta-public-cluster/auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster-update-variant/auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster/auth.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_client_config" "default" {
Configure provider
*****************************************/
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.10, != 1.11.0"
load_config_file = false
host = "https://${local.cluster_endpoint}"
token = data.google_client_config.default.access_token
Expand Down

0 comments on commit 418d9b3

Please sign in to comment.