nlamirault / terraform-digitalocean-doks

Terraform module for Digital Ocean Kubernetes (DOKS)
8 stars 8 forks source link

Update dependency hashicorp/terraform to v1.2.2 #18

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Update Change
hashicorp/terraform patch 1.2.0 -> 1.2.2

Release Notes

hashicorp/terraform ### [`v1.2.2`](https://togithub.com/hashicorp/terraform/releases/tag/v1.2.2) [Compare Source](https://togithub.com/hashicorp/terraform/compare/v1.2.1...v1.2.2) #### 1.2.2 (June 01, 2022) ENHANCEMENTS: - Invalid `-var` arguments with spaces between the name and value now have an improved error message ([#​30985](https://togithub.com/hashicorp/terraform/issues/30985)) BUG FIXES: - Terraform now hides invalid input values for sensitive root module variables when generating error diagnostics ([#​30552](https://togithub.com/hashicorp/terraform/issues/30552)) - Fixed crash on CLI autocomplete ([#​31160](https://togithub.com/hashicorp/terraform/issues/31160)) - The "Configuration contains unknown values" error message now includes attribute paths ([#​31111](https://togithub.com/hashicorp/terraform/issues/31111)) ### [`v1.2.1`](https://togithub.com/hashicorp/terraform/releases/tag/v1.2.1) [Compare Source](https://togithub.com/hashicorp/terraform/compare/v1.2.0...v1.2.1) ##### 1.2.1 (May 23, 2022) BUG FIXES: - SSH provisioner connections fail when using signed `ed25519` keys ([#​31092](https://togithub.com/hashicorp/terraform/issues/31092)) - Crash with invalid module source ([#​31060](https://togithub.com/hashicorp/terraform/issues/31060)) - Incorrect "Module is incompatible with count, for_each, and depends_on" error when a provider is nested within a module along with a sub-module using `count` or `for_each` ([#​31091](https://togithub.com/hashicorp/terraform/issues/31091))

Configuration

πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

github-actions[bot] commented 2 years ago

Terraform Security Scan Failed

Show Output ```hcl Result #1 MEDIUM Surge upgrades are disabled in your Kubernetes cluster. Please enable this feature. ──────────────────────────────────────────────────────────────────────────────── cluster.tf:15-39 ──────────────────────────────────────────────────────────────────────────────── 15 resource "digitalocean_kubernetes_cluster" "k8s" { 16 name = var.cluster_name 17 region = var.region 18 version = data.digitalocean_kubernetes_versions.k8s.latest_version 19 #var.kubernetes_version 20 21 auto_upgrade = var.auto_upgrade 22 tags = var.tags 23 24 node_pool { 25 name = format("%s-core", var.cluster_name) 26 size = element(data.digitalocean_sizes.k8s.sizes, 0).slug 27 auto_scale = var.auto_scale 28 min_nodes = var.min_nodes 29 max_nodes = var.max_nodes 30 node_count = var.node_count 31 tags = var.node_tags 32 labels = var.node_labels 33 } 34 maintenance_policy { 35 start_time = var.maintenance_policy_start_time 36 day = var.maintenance_policy_day 37 } 38 39 } ──────────────────────────────────────────────────────────────────────────────── ID digitalocean-compute-surge-upgrades-not-enabled Impact Upgrades may influence availability of your Kubernetes cluster Resolution Enable surge upgrades in your Kubernetes cluster More Information - https://aquasecurity.github.io/tfsec/latest/checks/digitalocean/compute/surge-upgrades-not-enabled/ - https://registry.terraform.io/providers/digitalocean/digitalocean/latest/docs/resources/kubernetes_cluster#surge_upgrade ──────────────────────────────────────────────────────────────────────────────── timings ────────────────────────────────────────── disk i/o 93.399Β΅s parsing 707.694Β΅s adaptation 57.499Β΅s checks 19.480297ms total 20.338889ms counts ────────────────────────────────────────── modules downloaded 0 modules processed 1 blocks processed 20 files read 5 results ────────────────────────────────────────── passed 1 ignored 0 critical 0 high 0 medium 1 low 0 1 passed, 1 potential problem(s) detected. ```
github-actions[bot] commented 2 years ago

Terraform Security Scan Failed

Show Output ```hcl ```