This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
v0.0.2
We've changed the resource a little bit, previous .tf files using the provider will not work anymore, as the resource has been renamed to follow the best practices.
Example usage of the provider:
provider "kind" {}
resource "kind_cluster" "default" {
name = "test-cluster"
}
This will create a kind cluster of the name test-cluster
. Feel free to check out the newly added documentation in the docs/
folder as well.