├── .github ├── dependabot.yaml ├── release.yaml └── workflows │ └── test.yaml ├── .gitignore ├── CHANGES.md ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── Makefile ├── README.md ├── docs ├── index.md └── resources │ ├── group.md │ └── profile.md ├── examples └── README.md ├── go.mod ├── go.sum ├── main.go └── matchbox ├── fixture_test.go ├── matchbox.go ├── provider.go ├── provider_test.go ├── resource_group.go ├── resource_group_test.go ├── resource_profile.go ├── resource_profile_test.go └── testdata ├── ca.crt ├── ca.key ├── certs.ext ├── client.crt ├── client.key ├── server.crt └── server.key /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/.github/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.tfstate* 2 | assets 3 | .terraform 4 | _output/ 5 | bin/ 6 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/resources/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/docs/resources/group.md -------------------------------------------------------------------------------- /docs/resources/profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/docs/resources/profile.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/examples/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/main.go -------------------------------------------------------------------------------- /matchbox/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/fixture_test.go -------------------------------------------------------------------------------- /matchbox/matchbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/matchbox.go -------------------------------------------------------------------------------- /matchbox/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/provider.go -------------------------------------------------------------------------------- /matchbox/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/provider_test.go -------------------------------------------------------------------------------- /matchbox/resource_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/resource_group.go -------------------------------------------------------------------------------- /matchbox/resource_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/resource_group_test.go -------------------------------------------------------------------------------- /matchbox/resource_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/resource_profile.go -------------------------------------------------------------------------------- /matchbox/resource_profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/resource_profile_test.go -------------------------------------------------------------------------------- /matchbox/testdata/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/ca.crt -------------------------------------------------------------------------------- /matchbox/testdata/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/ca.key -------------------------------------------------------------------------------- /matchbox/testdata/certs.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/certs.ext -------------------------------------------------------------------------------- /matchbox/testdata/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/client.crt -------------------------------------------------------------------------------- /matchbox/testdata/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/client.key -------------------------------------------------------------------------------- /matchbox/testdata/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/server.crt -------------------------------------------------------------------------------- /matchbox/testdata/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poseidon/terraform-provider-matchbox/HEAD/matchbox/testdata/server.key --------------------------------------------------------------------------------