nlamirault / terraform-digitalocean-doks

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

Update dependency hashicorp/terraform to v1.1.7 #14

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Update Change
hashicorp/terraform patch 1.1.6 -> 1.1.7

Release Notes

hashicorp/terraform ### [`v1.1.7`](https://togithub.com/hashicorp/terraform/releases/v1.1.7) [Compare Source](https://togithub.com/hashicorp/terraform/compare/v1.1.6...v1.1.7) #### 1.1.7 (March 02, 2022) BUG FIXES: - `terraform show -json`: Improve performance for deeply-nested object values. The previous implementation was accidentally quadratic, which could result in very long execution time for generating JSON plans, and timeouts on Terraform Cloud and Terraform Enterprise. ([#​30561](https://togithub.com/hashicorp/terraform/issues/30561)) - cloud: Update go-slug for terraform.tfstate exclusion to prevent a user from getting an error after migrating state to TFC.

Configuration

๐Ÿ“… Schedule: 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 WhiteSource 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 Lines 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 213.803ยตs parsing 776.513ยตs adaptation 61.802ยตs checks 2.613448ms total 3.665566ms counts โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ blocks 20 modules 1 files 5 results โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ignored 0 excluded 0 critical 0 high 0 medium 1 low 0 1 potential problem(s) detected. ```