Kong / terraform-provider-konnect

Terraform Provider for Kong Konnect
https://registry.terraform.io/providers/kong/konnect/latest
29 stars 7 forks source link

Remove quoted type constraints #82

Closed battlebyte closed 3 weeks ago

battlebyte commented 2 months 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.

mheap commented 1 month ago

@battlebyte Where are quoted type constraints used in this repo? I'm struggling to find what the action is here

battlebyte commented 1 month ago

@mheap sorry, wrong repo 😞 . The real thing is https://github.com/Kong/deck/pull/1412

mheap commented 3 weeks ago

This was resolved in Deck