-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: document how-to use terragrunt
with terraform-provider-minikube
#136
Comments
@scott-the-programmer Would you assign this one to me? How do you think this information should manifest? Should it be docs only? Should it be a repository? I already have a I think it would be best to document the minimum necessary design to use |
Maybe making two sections in the docs:
And both show |
Yep, sounds good to me! |
I haven't forgotten about this; I'm going to get to this sometime this week. |
terragrunt
with minikube
, kubernetes
, and helm
providersterragrunt
with terraform-provider-minikube
Worked on this tonight; I'll add final edits tomorrow. The example works as expected, so only edits to docs should be needed to complete this. I changed the scope of the ticket to be simpler because I think it'll be more helpful. |
terragrunt
is an open source tool created by GruntWorks.io, and it's used as a wrapper toterraform
where it provides features thatterraform
cannot provide. The goal of the documentation is to show another way to use theminikube
,kubernetes
, andhelm
providers together because it doesn't replaceterraform
usage; it extendsterraform
usage.This is something that I would like to document for the open source community as I'm not really sure if anyone knows this is possible because I figured it out on my own using
terraform-provider-minikube
.There are a lot of advantages:
terragrunt
has dedicated support foropentofu
, which fits with @scott-the-programmer and GruntWorks.io's goals to bridge the industry licensing issue that's causing the migration (see [Feature] Refactor dev setup to accomodate for opentofu #120)terraform
project is downloaded usinggit
, which encourages caching and reproducibleinit
/plan
/apply
sequences through GitOpsterraform-provider-minikube
usage, which keeps yourHCL
100% dry while providing 100% control over common settings between different drivers (docker
,kvm2
,qemu2
, ...). This has a lot to do with how the project's structure is designed, which I would like to cover.providers
block, meaning thatkubernetes_version
fromterraform-provider-minikube
can be templated:remote_state
block in a similar way:The text was updated successfully, but these errors were encountered: