Skip to content

Commit

Permalink
fix: there's a missing 'v' in kubernetes_version
Browse files Browse the repository at this point in the history
It's being parsed as an integer because there's a leading number in the text string; by adding the v, `terragrunt`, `tofu`, and `terraform` all will interpret the string correctly.
  • Loading branch information
caerulescens committed Sep 3, 2024
1 parent df98529 commit f28a67a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion provider.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# todo: report bug upstream to scott/terraform-provider-minikube
provider "minikube" {
kubernetes_version = "1.30.0"
kubernetes_version = "v1.30.0"
}

0 comments on commit f28a67a

Please sign in to comment.