Skip to content

Commit

Permalink
fix: widen version scope for all providers
Browse files Browse the repository at this point in the history
  • Loading branch information
cagiti authored and jenkins-x-bot committed May 7, 2020
1 parent 538e1bb commit 9eb96a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,26 @@ provider "google-beta" {
}

provider "random" {
version = "~> 2.2.0"
version = ">= 2.2.0"
}

provider "local" {
version = ">= 1.2.0"
}

provider "null" {
version = "~> 2.1.0"
version = ">= 2.1.0"
}

provider "template" {
version = "~> 2.1.0"
version = ">= 2.1.0"
}

data "google_client_config" "default" {
}

provider "kubernetes" {
version = "~> 1.11.0"
version = ">= 1.11.0"
load_config_file = false

host = "https://${module.cluster.cluster_endpoint}"
Expand Down

0 comments on commit 9eb96a0

Please sign in to comment.