Skip to content

Commit

Permalink
clean up terraform for post-install modules (#814)
Browse files Browse the repository at this point in the history
* clean up terraform for post-install modules

Signed-off-by: Bob Callaway <bcallaway@google.com>

* pin releases instead of ranges

Signed-off-by: Bob Callaway <bcallaway@google.com>

---------

Signed-off-by: Bob Callaway <bcallaway@google.com>
  • Loading branch information
bobcallaway committed Nov 5, 2023
1 parent acfc3ee commit 1e0d22c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 27 deletions.
16 changes: 2 additions & 14 deletions terraform/gcp/modules/argocd/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,16 @@
*/

terraform {
required_version = ">= 1.1.3, < 1.4.0"
required_version = "1.6.3"

required_providers {
google = {
version = ">= 4.11.0, < 4.38.0"
source = "hashicorp/google"
}
google-beta = {
version = ">= 4.11.0, < 4.38.0"
source = "hashicorp/google-beta"
}
random = {
version = ">= 3.1.0, < 3.2.0"
source = "hashicorp/random"
}
kubectl = {
source = "gavinbunney/kubectl"
version = "1.14.0"
}
helm = {
source = "hashicorp/helm"
version = "2.6.0"
version = "2.11.0"
}
}
}
2 changes: 0 additions & 2 deletions terraform/gcp/modules/external_secrets/external_secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ apiVersion: v1
kind: Namespace
metadata:
name: trillian-system
labels:
name: trillian-system
YAML
}

Expand Down
14 changes: 3 additions & 11 deletions terraform/gcp/modules/external_secrets/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,20 @@
*/

terraform {
required_version = ">= 1.1.3, < 1.4.0"
required_version = "1.6.3"

required_providers {
google = {
version = ">= 4.11.0, < 4.38.0"
version = "5.4.0"
source = "hashicorp/google"
}
google-beta = {
version = ">= 4.11.0, < 4.38.0"
source = "hashicorp/google-beta"
}
random = {
version = ">= 3.1.0, < 3.2.0"
source = "hashicorp/random"
}
kubectl = {
source = "gavinbunney/kubectl"
version = "1.14.0"
}
helm = {
source = "hashicorp/helm"
version = "2.6.0"
version = "2.11.0"
}
}
}

0 comments on commit 1e0d22c

Please sign in to comment.