├── .github ├── dependabot.yml └── workflows │ ├── comment-pr.yml │ ├── labeled-pr-testing.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── NOTICE.md ├── README.md ├── before-commit.sh ├── docs ├── DEVELOPMENT.md ├── FAQ.md ├── USAGE.md ├── index.md └── resources │ └── cluster.md ├── example ├── .gitignore └── main.tf ├── go.mod ├── go.sum ├── kind ├── provider.go ├── provider_test.go ├── resource_cluster.go ├── resource_cluster_test.go ├── schema_kind_config.go ├── structure.go ├── structure_kind_config.go ├── structure_test.go ├── validation.go └── validation_test.go └── main.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/comment-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.github/workflows/comment-pr.yml -------------------------------------------------------------------------------- /.github/workflows/labeled-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.github/workflows/labeled-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/README.md -------------------------------------------------------------------------------- /before-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/before-commit.sh -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/docs/USAGE.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/resources/cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/docs/resources/cluster.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | .terraform.lock.hcl -------------------------------------------------------------------------------- /example/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/example/main.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/go.sum -------------------------------------------------------------------------------- /kind/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/provider.go -------------------------------------------------------------------------------- /kind/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/provider_test.go -------------------------------------------------------------------------------- /kind/resource_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/resource_cluster.go -------------------------------------------------------------------------------- /kind/resource_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/resource_cluster_test.go -------------------------------------------------------------------------------- /kind/schema_kind_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/schema_kind_config.go -------------------------------------------------------------------------------- /kind/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/structure.go -------------------------------------------------------------------------------- /kind/structure_kind_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/structure_kind_config.go -------------------------------------------------------------------------------- /kind/structure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/structure_test.go -------------------------------------------------------------------------------- /kind/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/validation.go -------------------------------------------------------------------------------- /kind/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/kind/validation_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehcyx/terraform-provider-kind/HEAD/main.go --------------------------------------------------------------------------------