Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

v0.0.2

Compare
Choose a tag to compare
@tehcyx tehcyx released this 05 Aug 16:23
· 19 commits to master since this release
ad2500c

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.