Kong / deck

decK: Configuration management and drift detection for Kong
https://docs.konghq.com/deck/overview
Apache License 2.0
445 stars 130 forks source link

Remove quoted type constraints #1412

Closed battlebyte closed 1 month ago

battlebyte commented 1 month ago

Type constraints in quotes was required in Terraform 0.11 and earlier, but that form is now deprecated and will be removed in a future version of Terraform. For example:

variable "control_plane_id" {
  type = "string"
  default = "YOUR_CONTROL_PLANE_ID"
}

should be

variable "control_plane_id" {
  type = string
  default = "YOUR_CONTROL_PLANE_ID"
}

if the quotes are present, an error is shown during terraform apply.

codecov-commenter commented 1 month ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 29.14%. Comparing base (cd165de) to head (e78ee36).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #1412 +/- ## ======================================= Coverage 29.14% 29.14% ======================================= Files 59 59 Lines 5215 5215 ======================================= Hits 1520 1520 Misses 3587 3587 Partials 108 108 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.