From 4079798e140c408cd9573a19bd96af837ed78aa7 Mon Sep 17 00:00:00 2001 From: Brett Curtis Date: Sat, 21 Dec 2024 07:16:44 -0500 Subject: [PATCH] Update dependencies and versions --- .gitignore | 3 +++ .pre-commit-config.yaml | 3 ++- regional/README.md | 4 ++-- regional/istio-csr/README.md | 6 +++--- regional/istio-csr/variables.tf | 2 +- regional/variables.tf | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 4af90a9..cb4ecfc 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,9 @@ override.tf.json # Ignore plan output files plan.out +# Ignore checkov directories and files +.external_modules + # Ignore Infracost directories and files .infracost diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a422cc7..651a22c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,11 +29,12 @@ repos: - id: terraform_docs - repo: https://github.com/bridgecrewio/checkov.git - rev: 3.2.296 + rev: 3.2.343 hooks: - id: checkov verbose: true args: + - --download-external-modules=true - --skip-check - "CKV_TF_1" - --quiet diff --git a/regional/README.md b/regional/README.md index ce4bb81..e85218e 100644 --- a/regional/README.md +++ b/regional/README.md @@ -11,7 +11,7 @@ No requirements. | Name | Version | |------|---------| -| [helm](#provider\_helm) | 2.16.1 | +| [helm](#provider\_helm) | 2.17.0 | ## Modules @@ -35,7 +35,7 @@ No requirements. | [cain\_injector\_resources\_limits\_memory](#input\_cain\_injector\_resources\_limits\_memory) | The memory limit for the cain-injector resources | `string` | `"64Mi"` | no | | [cain\_injector\_resources\_requests\_cpu](#input\_cain\_injector\_resources\_requests\_cpu) | The CPU request for the cain-injector resources | `string` | `"10m"` | no | | [cain\_injector\_resources\_requests\_memory](#input\_cain\_injector\_resources\_requests\_memory) | The memory request for the cain-injector resources | `string` | `"32Mi"` | no | -| [cert\_manager\_version](#input\_cert\_manager\_version) | The version to install, this is used for the chart as well as the image tag | `string` | `"1.16.1"` | no | +| [cert\_manager\_version](#input\_cert\_manager\_version) | The version to install, this is used for the chart as well as the image tag | `string` | `"1.16.2"` | no | | [chart\_repository](#input\_chart\_repository) | The repository to pull the cert-manager Helm chart from | `string` | `"https://charts.jetstack.io"` | no | | [replicas](#input\_replicas) | The number of replicas to run | `number` | `1` | no | | [resources\_limits\_cpu](#input\_resources\_limits\_cpu) | The CPU limit for the resources | `string` | `"20m"` | no | diff --git a/regional/istio-csr/README.md b/regional/istio-csr/README.md index a4cdff3..4896822 100644 --- a/regional/istio-csr/README.md +++ b/regional/istio-csr/README.md @@ -11,8 +11,8 @@ No requirements. | Name | Version | |------|---------| -| [helm](#provider\_helm) | 2.16.1 | -| [kubernetes](#provider\_kubernetes) | 2.33.0 | +| [helm](#provider\_helm) | 2.17.0 | +| [kubernetes](#provider\_kubernetes) | 2.35.1 | ## Modules @@ -34,7 +34,7 @@ No requirements. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [artifact\_registry](#input\_artifact\_registry) | The registry to pull the images from | `string` | `"us-docker.pkg.dev/plt-lz-services-tf79-prod/plt-docker-virtual"` | no | -| [cert\_manager\_istio\_csr\_version](#input\_cert\_manager\_istio\_csr\_version) | The version to install for the Istio CSR, this is used for the chart as well as the image tag | `string` | `"0.12.0"` | no | +| [cert\_manager\_istio\_csr\_version](#input\_cert\_manager\_istio\_csr\_version) | The version to install for the Istio CSR, this is used for the chart as well as the image tag | `string` | `"0.13.0"` | no | | [chart\_repository](#input\_chart\_repository) | The repository to pull the cert-manager Helm chart from | `string` | `"https://charts.jetstack.io"` | no | | [cluster\_prefix](#input\_cluster\_prefix) | Prefix for your cluster name, region, and zone (if applicable) will be added to the end of the cluster name | `string` | n/a | yes | | [resources\_limits\_cpu](#input\_resources\_limits\_cpu) | The CPU limit for the Istio CSR container | `string` | `"50m"` | no | diff --git a/regional/istio-csr/variables.tf b/regional/istio-csr/variables.tf index 09f6f40..28c3bab 100644 --- a/regional/istio-csr/variables.tf +++ b/regional/istio-csr/variables.tf @@ -10,7 +10,7 @@ variable "artifact_registry" { variable "cert_manager_istio_csr_version" { description = "The version to install for the Istio CSR, this is used for the chart as well as the image tag" type = string - default = "0.12.0" + default = "0.13.0" } variable "cluster_prefix" { diff --git a/regional/variables.tf b/regional/variables.tf index caf2578..0a4661b 100644 --- a/regional/variables.tf +++ b/regional/variables.tf @@ -40,7 +40,7 @@ variable "cain_injector_resources_requests_memory" { variable "cert_manager_version" { description = "The version to install, this is used for the chart as well as the image tag" type = string - default = "1.16.1" + default = "1.16.2" } variable "chart_repository" {