Skip to content

Commit 1e577e6

Browse files
Merge pull request #223 from Finsys/master
updated dependencies to support Mac ARM binaries
2 parents 2061c7b + 99259a3 commit 1e577e6

File tree

2 files changed

+6
-169
lines changed

2 files changed

+6
-169
lines changed

.terraform.lock.hcl

-158
This file was deleted.

main.tf

+6-11
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66
terraform {
77
required_version = ">= 0.12.0, < 2.0"
88
required_providers {
9-
google = ">= 4.0.0, < 5.0.0"
10-
google-beta = ">= 4.0.0, < 5.0.0"
11-
kubernetes = "~>1.11.0"
12-
helm = "~>1.3.0"
13-
random = ">= 2.2.0"
14-
local = ">= 1.2.0"
9+
google = ">= 4.26.0"
10+
google-beta = ">= 4.26.0"
11+
kubernetes = ">=2.11.0"
12+
helm = ">=2.6.0"
13+
random = ">= 3.3.2"
14+
local = ">= 2.2.3"
1515
null = ">= 2.1.0"
16-
template = ">= 2.1.0"
1716
}
1817
}
1918

@@ -32,8 +31,6 @@ data "google_client_config" "default" {
3231
}
3332

3433
provider "kubernetes" {
35-
load_config_file = false
36-
3734
host = "https://${module.cluster.cluster_endpoint}"
3835
token = data.google_client_config.default.access_token
3936
cluster_ca_certificate = base64decode(module.cluster.cluster_ca_certificate)
@@ -48,8 +45,6 @@ provider "helm" {
4845
client_certificate = base64decode(module.cluster.cluster_client_certificate)
4946
client_key = base64decode(module.cluster.client_client_key)
5047
cluster_ca_certificate = base64decode(module.cluster.cluster_ca_certificate)
51-
52-
load_config_file = false
5348
}
5449
}
5550

0 commit comments

Comments
 (0)