scott-the-programmer/terraform-provider-minikube

View on GitHub
examples/guides/terragrunt/terragrunt_project/dev/cluster-a/terragrunt.hcl

Summary

Maintainability
Test Coverage
include "root" {
  path = find_in_parent_folders()
}

include "envcommon" {
  path   = "${dirname(find_in_parent_folders())}/_envcommon/minikube.hcl"
  expose = true
}

terraform {
  source = "${include.envcommon.locals.base_source_url}?ref=${include.envcommon.locals.ref}"
}

inputs = {
  cluster_name = "dev-cluster-a"
}