Skip to content

Commit 697da0e

Browse files
committed
fix: Correct version pin to support 1.4+ and protect from upcoming provider v5 changes
1 parent fbfc3c4 commit 697da0e

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

environment/installer.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ rm -rf flux.tar.gz
9999
# argocd
100100
download_and_verify "https://github.com/argoproj/argo-cd/releases/download/v${argocd_version}/argocd-linux-amd64" "$argocd_checksum" "argocd-linux-amd64"
101101
chmod +x ./argocd-linux-amd64
102-
mv ./argocd-linux-amd64 /usr/local/bin/argocd
102+
mv ./argocd-linux-amd64 /usr/local/bin/argocd

terraform/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
terraform {
2+
required_version = "~> 1.3"
3+
24
required_providers {
35
aws = {
46
source = "hashicorp/aws"
5-
version = ">= 4.46.0"
7+
version = "~> 4.46"
68
}
79
}
8-
9-
required_version = ">= 1.3.7"
1010
}
1111

1212
provider "aws" {

terraform/modules/addons/descheduler/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = ">= 1.0.0"
2+
required_version = ">= 1.0"
33

44
required_providers {
55
kubernetes = {

terraform/modules/cluster/providers.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
terraform {
2+
required_version = ">= 1.3"
3+
24
required_providers {
35
null = {
46
source = "hashicorp/null"
@@ -40,5 +42,4 @@ terraform {
4042
version = ">= 1.7.0"
4143
}
4244
}
43-
required_version = ">= 1.3.7"
4445
}

terraform/modules/ide/main.tf

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
data "aws_region" "current" {}
22

33
terraform {
4+
required_version = ">= 1.3"
5+
46
required_providers {
57
aws = {
68
source = "hashicorp/aws"
7-
version = ">= 4.46.0"
9+
version = ">= 4.46"
810
}
911
}
10-
required_version = ">= 1.3.7"
1112
}

website/docs/automation/gitops/argocd/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Argo CD offers 2 ways to manage your application state:
2020
* User Interface - A web-based UI that lets you do the same things that you can do with the CLI. It also lets you visualize the Kubernetes resources belongs to the Argo CD applications that you create.
2121

2222

23-
<img src={require('./assets/argo-cd-architecture.png').default}/>
23+
<img src={require('./assets/argo-cd-architecture.png').default}/>

0 commit comments

Comments
 (0)