├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── examples ├── .gitignore ├── init-plan.sh ├── main.tf ├── userAdded.avsc └── userAdded_v2.avsc ├── go.mod ├── go.sum ├── main.go └── schemaregistry ├── data_source_schema.go ├── data_source_schema_test.go ├── fixtures.go ├── provider.go ├── provider_test.go ├── resource_schema.go ├── resource_schema_test.go └── utils.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/init-plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/examples/init-plan.sh -------------------------------------------------------------------------------- /examples/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/examples/main.tf -------------------------------------------------------------------------------- /examples/userAdded.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/examples/userAdded.avsc -------------------------------------------------------------------------------- /examples/userAdded_v2.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/examples/userAdded_v2.avsc -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/main.go -------------------------------------------------------------------------------- /schemaregistry/data_source_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/data_source_schema.go -------------------------------------------------------------------------------- /schemaregistry/data_source_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/data_source_schema_test.go -------------------------------------------------------------------------------- /schemaregistry/fixtures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/fixtures.go -------------------------------------------------------------------------------- /schemaregistry/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/provider.go -------------------------------------------------------------------------------- /schemaregistry/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/provider_test.go -------------------------------------------------------------------------------- /schemaregistry/resource_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/resource_schema.go -------------------------------------------------------------------------------- /schemaregistry/resource_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/resource_schema_test.go -------------------------------------------------------------------------------- /schemaregistry/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkiaconsulting/terraform-provider-confluent-schema-registry/HEAD/schemaregistry/utils.go --------------------------------------------------------------------------------