From 2912890f97e4dce31733be29ff6bcf6bdad36843 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 06:24:29 +0000 Subject: [PATCH] chore(deps): update terraform provides --- infrastructure/docs/client-node/providers.tf | 4 ++-- .../docs/kubernetes/cluster/k3s-cluster/providers.tf | 2 +- .../kubernetes/cluster/kubeadm-cluster/providers.tf | 2 +- infrastructure/quick-deploy/aws/all/versions.tf | 10 +++++----- infrastructure/quick-deploy/aws/armonik/versions.tf | 2 +- infrastructure/quick-deploy/aws/ecr/versions.tf | 6 +++--- infrastructure/quick-deploy/aws/eks/versions.tf | 12 ++++++------ .../quick-deploy/aws/monitoring/versions.tf | 6 +++--- infrastructure/quick-deploy/aws/storage/versions.tf | 8 ++++---- infrastructure/quick-deploy/aws/vpc/versions.tf | 6 +++--- .../quick-deploy/localhost/all/versions.tf | 8 ++++---- .../quick-deploy/localhost/armonik/versions.tf | 10 +++++----- .../quick-deploy/localhost/keda/versions.tf | 10 +++++----- .../localhost/metrics-server/versions.tf | 10 +++++----- .../quick-deploy/localhost/monitoring/versions.tf | 10 +++++----- .../quick-deploy/localhost/storage/versions.tf | 10 +++++----- 16 files changed, 58 insertions(+), 58 deletions(-) diff --git a/infrastructure/docs/client-node/providers.tf b/infrastructure/docs/client-node/providers.tf index 0bf48b827..87f6512cb 100644 --- a/infrastructure/docs/client-node/providers.tf +++ b/infrastructure/docs/client-node/providers.tf @@ -7,11 +7,11 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.20.0" + version = "~> 4.67.0" } random = { source = "hashicorp/random" - version = "~> 3.1.0" + version = "~> 3.5.1" } template = { source = "hashicorp/template" diff --git a/infrastructure/docs/kubernetes/cluster/k3s-cluster/providers.tf b/infrastructure/docs/kubernetes/cluster/k3s-cluster/providers.tf index 34c3fb61a..b2dfb05ee 100644 --- a/infrastructure/docs/kubernetes/cluster/k3s-cluster/providers.tf +++ b/infrastructure/docs/kubernetes/cluster/k3s-cluster/providers.tf @@ -7,7 +7,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 3.69.0" + version = "~> 3.76.1" } template = { diff --git a/infrastructure/docs/kubernetes/cluster/kubeadm-cluster/providers.tf b/infrastructure/docs/kubernetes/cluster/kubeadm-cluster/providers.tf index 34c3fb61a..b2dfb05ee 100644 --- a/infrastructure/docs/kubernetes/cluster/kubeadm-cluster/providers.tf +++ b/infrastructure/docs/kubernetes/cluster/kubeadm-cluster/providers.tf @@ -7,7 +7,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 3.69.0" + version = "~> 3.76.1" } template = { diff --git a/infrastructure/quick-deploy/aws/all/versions.tf b/infrastructure/quick-deploy/aws/all/versions.tf index 06e1f2cf8..f5e9905f7 100644 --- a/infrastructure/quick-deploy/aws/all/versions.tf +++ b/infrastructure/quick-deploy/aws/all/versions.tf @@ -2,23 +2,23 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.47.0" + version = "~> 4.67.0" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } local = { source = "hashicorp/local" - version = "~> 2.2.0" + version = "~> 2.4.0" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } kubectl = { source = "gavinbunney/kubectl" diff --git a/infrastructure/quick-deploy/aws/armonik/versions.tf b/infrastructure/quick-deploy/aws/armonik/versions.tf index 4aa87e608..9aef20fe0 100644 --- a/infrastructure/quick-deploy/aws/armonik/versions.tf +++ b/infrastructure/quick-deploy/aws/armonik/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.7.1" + version = "~> 2.21.1" } tls = { source = "hashicorp/tls" diff --git a/infrastructure/quick-deploy/aws/ecr/versions.tf b/infrastructure/quick-deploy/aws/ecr/versions.tf index 191bee1ad..324bafd2f 100644 --- a/infrastructure/quick-deploy/aws/ecr/versions.tf +++ b/infrastructure/quick-deploy/aws/ecr/versions.tf @@ -2,15 +2,15 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.47" + version = "~> 4.67" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } } } \ No newline at end of file diff --git a/infrastructure/quick-deploy/aws/eks/versions.tf b/infrastructure/quick-deploy/aws/eks/versions.tf index 9fb8e702b..206ee5b8d 100644 --- a/infrastructure/quick-deploy/aws/eks/versions.tf +++ b/infrastructure/quick-deploy/aws/eks/versions.tf @@ -2,27 +2,27 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.47" + version = "~> 4.67" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } cloudinit = { source = "hashicorp/cloudinit" - version = "~> 2.2.0" + version = "~> 2.3.2" } helm = { source = "hashicorp/helm" - version = "~> 2.7.0" + version = "~> 2.10.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.2.0" + version = "~> 2.4.0" } } } diff --git a/infrastructure/quick-deploy/aws/monitoring/versions.tf b/infrastructure/quick-deploy/aws/monitoring/versions.tf index 234dc9186..dec8dc965 100644 --- a/infrastructure/quick-deploy/aws/monitoring/versions.tf +++ b/infrastructure/quick-deploy/aws/monitoring/versions.tf @@ -2,15 +2,15 @@ terraform { required_providers { external = { source = "hashicorp/external" - version = "~> 2.2.0" + version = "~> 2.3.1" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } local = { source = "hashicorp/local" - version = "~> 2.1.0" + version = "~> 2.4.0" } } } diff --git a/infrastructure/quick-deploy/aws/storage/versions.tf b/infrastructure/quick-deploy/aws/storage/versions.tf index 6afbb9b9f..4af3ebf6b 100644 --- a/infrastructure/quick-deploy/aws/storage/versions.tf +++ b/infrastructure/quick-deploy/aws/storage/versions.tf @@ -2,19 +2,19 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.47.0" + version = "~> 4.67.0" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } kubectl = { source = "gavinbunney/kubectl" diff --git a/infrastructure/quick-deploy/aws/vpc/versions.tf b/infrastructure/quick-deploy/aws/vpc/versions.tf index 223ad5cf4..651c54296 100644 --- a/infrastructure/quick-deploy/aws/vpc/versions.tf +++ b/infrastructure/quick-deploy/aws/vpc/versions.tf @@ -2,15 +2,15 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.47.0" + version = "~> 4.67.0" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } } } \ No newline at end of file diff --git a/infrastructure/quick-deploy/localhost/all/versions.tf b/infrastructure/quick-deploy/localhost/all/versions.tf index 2753675a4..fbf3d379c 100644 --- a/infrastructure/quick-deploy/localhost/all/versions.tf +++ b/infrastructure/quick-deploy/localhost/all/versions.tf @@ -2,19 +2,19 @@ terraform { required_providers { null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } local = { source = "hashicorp/local" - version = "~> 2.2.0" + version = "~> 2.4.0" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } kubectl = { source = "gavinbunney/kubectl" diff --git a/infrastructure/quick-deploy/localhost/armonik/versions.tf b/infrastructure/quick-deploy/localhost/armonik/versions.tf index dce13114c..0d51cee46 100644 --- a/infrastructure/quick-deploy/localhost/armonik/versions.tf +++ b/infrastructure/quick-deploy/localhost/armonik/versions.tf @@ -6,23 +6,23 @@ terraform { } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } external = { source = "hashicorp/external" - version = "~> 2.1.1" + version = "~> 2.3.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.2.2" + version = "~> 2.4.0" } tls = { source = "hashicorp/tls" diff --git a/infrastructure/quick-deploy/localhost/keda/versions.tf b/infrastructure/quick-deploy/localhost/keda/versions.tf index b8d685fd3..eaa79b2ff 100644 --- a/infrastructure/quick-deploy/localhost/keda/versions.tf +++ b/infrastructure/quick-deploy/localhost/keda/versions.tf @@ -2,23 +2,23 @@ terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } external = { source = "hashicorp/external" - version = "~> 2.1.1" + version = "~> 2.3.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.1.0" + version = "~> 2.4.0" } tls = { source = "hashicorp/tls" diff --git a/infrastructure/quick-deploy/localhost/metrics-server/versions.tf b/infrastructure/quick-deploy/localhost/metrics-server/versions.tf index b8d685fd3..eaa79b2ff 100644 --- a/infrastructure/quick-deploy/localhost/metrics-server/versions.tf +++ b/infrastructure/quick-deploy/localhost/metrics-server/versions.tf @@ -2,23 +2,23 @@ terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } external = { source = "hashicorp/external" - version = "~> 2.1.1" + version = "~> 2.3.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.1.0" + version = "~> 2.4.0" } tls = { source = "hashicorp/tls" diff --git a/infrastructure/quick-deploy/localhost/monitoring/versions.tf b/infrastructure/quick-deploy/localhost/monitoring/versions.tf index b8d685fd3..eaa79b2ff 100644 --- a/infrastructure/quick-deploy/localhost/monitoring/versions.tf +++ b/infrastructure/quick-deploy/localhost/monitoring/versions.tf @@ -2,23 +2,23 @@ terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } external = { source = "hashicorp/external" - version = "~> 2.1.1" + version = "~> 2.3.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.1.0" + version = "~> 2.4.0" } tls = { source = "hashicorp/tls" diff --git a/infrastructure/quick-deploy/localhost/storage/versions.tf b/infrastructure/quick-deploy/localhost/storage/versions.tf index 91aafaa0a..bd5428d0a 100644 --- a/infrastructure/quick-deploy/localhost/storage/versions.tf +++ b/infrastructure/quick-deploy/localhost/storage/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.13.0" + version = "~> 2.21.1" } kubectl = { source = "gavinbunney/kubectl" @@ -10,19 +10,19 @@ terraform { } external = { source = "hashicorp/external" - version = "~> 2.1.1" + version = "~> 2.3.1" } null = { source = "hashicorp/null" - version = "~> 3.1.0" + version = "~> 3.2.1" } random = { source = "hashicorp/random" - version = "~> 3.4.3" + version = "~> 3.5.1" } local = { source = "hashicorp/local" - version = "~> 2.2.2" + version = "~> 2.4.0" } tls = { source = "hashicorp/tls"