diff --git a/environment/installer.sh b/environment/installer.sh index 55a1a40cc..b0c45c44b 100644 --- a/environment/installer.sh +++ b/environment/installer.sh @@ -99,4 +99,4 @@ rm -rf flux.tar.gz # argocd download_and_verify "https://github.com/argoproj/argo-cd/releases/download/v${argocd_version}/argocd-linux-amd64" "$argocd_checksum" "argocd-linux-amd64" chmod +x ./argocd-linux-amd64 -mv ./argocd-linux-amd64 /usr/local/bin/argocd \ No newline at end of file +mv ./argocd-linux-amd64 /usr/local/bin/argocd diff --git a/terraform/main.tf b/terraform/main.tf index 7ddbd585d..caea3a31b 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -1,12 +1,12 @@ terraform { + required_version = "~> 1.3" + required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.46.0" + version = "~> 4.46" } } - - required_version = ">= 1.3.7" } provider "aws" { diff --git a/terraform/modules/addons/descheduler/versions.tf b/terraform/modules/addons/descheduler/versions.tf index 55fba733a..73d5a2d95 100644 --- a/terraform/modules/addons/descheduler/versions.tf +++ b/terraform/modules/addons/descheduler/versions.tf @@ -1,5 +1,5 @@ terraform { - required_version = ">= 1.0.0" + required_version = ">= 1.0" required_providers { kubernetes = { diff --git a/terraform/modules/cluster/providers.tf b/terraform/modules/cluster/providers.tf index 32b9bf748..b03656f8c 100644 --- a/terraform/modules/cluster/providers.tf +++ b/terraform/modules/cluster/providers.tf @@ -1,4 +1,6 @@ terraform { + required_version = ">= 1.3" + required_providers { null = { source = "hashicorp/null" @@ -40,5 +42,4 @@ terraform { version = ">= 1.7.0" } } - required_version = ">= 1.3.7" } diff --git a/terraform/modules/ide/main.tf b/terraform/modules/ide/main.tf index 6d41138bd..71ffb573c 100644 --- a/terraform/modules/ide/main.tf +++ b/terraform/modules/ide/main.tf @@ -1,11 +1,12 @@ data "aws_region" "current" {} terraform { + required_version = ">= 1.3" + required_providers { aws = { source = "hashicorp/aws" - version = ">= 4.46.0" + version = ">= 4.46" } } - required_version = ">= 1.3.7" } diff --git a/website/docs/automation/gitops/argocd/index.md b/website/docs/automation/gitops/argocd/index.md index 52dd21bfc..ecf3d498f 100644 --- a/website/docs/automation/gitops/argocd/index.md +++ b/website/docs/automation/gitops/argocd/index.md @@ -20,4 +20,4 @@ Argo CD offers 2 ways to manage your application state: * 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. - \ No newline at end of file +