Skip to content

Commit 0b6e0c1

Browse files
committed
Adjust namespace from private repo to new public one
1 parent 3f680c3 commit 0b6e0c1

File tree

83 files changed

+110
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+110
-155
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5454
- Example configurations for common use cases
5555
- Reusable Terraform modules for common patterns
5656

57-
[Unreleased]: https://github.com/fjcorp/terraform-provider-openai/compare/v0.1.0...HEAD
58-
[0.1.0]: https://github.com/fjcorp/terraform-provider-openai/releases/tag/v0.1.0
57+
[Unreleased]: https://github.com/mkdev-me/terraform-provider-openai/compare/v0.1.0...HEAD
58+
[0.1.0]: https://github.com/mkdev-me/terraform-provider-openai/releases/tag/v0.1.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
44
DEV_HOSTNAME=github.com
55
# For Terraform Registry
66
REGISTRY_HOSTNAME=registry.terraform.io
7-
NAMESPACE=fjcorp
7+
NAMESPACE=mkdev-me
88
NAME=openai
99
BINARY=terraform-provider-${NAME}
1010
VERSION=1.0.0

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Terraform Provider for OpenAI
22

3-
[![Release](https://img.shields.io/github/v/release/fjcorp/terraform-provider-openai)](https://github.com/fjcorp/terraform-provider-openai/releases)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/fjcorp/terraform-provider-openai)](https://goreportcard.com/report/github.com/fjcorp/terraform-provider-openai)
3+
[![Release](https://img.shields.io/github/v/release/mkdev-me/terraform-provider-openai)](https://github.com/mkdev-me/terraform-provider-openai/releases)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/mkdev-me/terraform-provider-openai)](https://goreportcard.com/report/github.com/mkdev-me/terraform-provider-openai)
55
[![License: MPL-2.0](https://img.shields.io/badge/License-MPL--2.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
66

77
A comprehensive Terraform provider for managing OpenAI resources, enabling infrastructure-as-code management of OpenAI's API services including chat completions, assistants, fine-tuning, embeddings, and more.
@@ -43,7 +43,7 @@ A comprehensive Terraform provider for managing OpenAI resources, enabling infra
4343
terraform {
4444
required_providers {
4545
openai = {
46-
source = "fjcorp/openai"
46+
source = "mkdev-me/openai"
4747
version = "~> 0.1"
4848
}
4949
}
@@ -60,7 +60,7 @@ For development or if you need the latest unreleased version:
6060

6161
```bash
6262
# Clone the repository
63-
git clone https://github.com/fjcorp/terraform-provider-openai.git
63+
git clone https://github.com/mkdev-me/terraform-provider-openai.git
6464
cd terraform-provider-openai
6565

6666
# Build and install in one command
@@ -75,7 +75,7 @@ For provider developers, this repository includes a comprehensive Makefile with
7575

7676
```bash
7777
# Clone and setup
78-
git clone https://github.com/fjcorp/terraform-provider-openai.git
78+
git clone https://github.com/mkdev-me/terraform-provider-openai.git
7979
cd terraform-provider-openai
8080

8181
# Install dependencies and build
@@ -219,7 +219,7 @@ terraform destroy
219219
terraform {
220220
required_providers {
221221
openai = {
222-
source = "fjcorp/openai"
222+
source = "mkdev-me/openai"
223223
version = "~> 0.1"
224224
}
225225
}
@@ -417,7 +417,7 @@ If you encounter API key issues:
417417
- [Examples](examples/): Complete working examples for all features
418418

419419
### Reference Documentation
420-
- [Terraform Registry Documentation](https://registry.terraform.io/providers/fjcorp/openai/latest/docs): Official provider documentation
420+
- [Terraform Registry Documentation](https://registry.terraform.io/providers/mkdev-me/openai/latest/docs): Official provider documentation
421421
- [Resources](docs/resources/): Comprehensive resource documentation
422422
- [Data Sources](docs/data-sources/): Data source documentation
423423
- [Modules](modules/): Reusable Terraform modules
@@ -439,7 +439,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
439439
## Support
440440

441441
For issues, feature requests, or questions:
442-
- [GitHub Issues](https://github.com/fjcorp/terraform-provider-openai/issues)
442+
- [GitHub Issues](https://github.com/mkdev-me/terraform-provider-openai/issues)
443443
- [Documentation](docs/)
444444
- [Examples](examples/)
445445

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ If you're new to the OpenAI Terraform Provider, start here:
5656

5757
## Getting Help
5858

59-
- **Issues**: [GitHub Issues](https://github.com/fjcorp/terraform-provider-openai/issues)
59+
- **Issues**: [GitHub Issues](https://github.com/mkdev-me/terraform-provider-openai/issues)
6060
- **Examples**: [Example Configurations](../examples/)
6161
- **API Reference**: [OpenAI API Documentation](https://platform.openai.com/docs/api-reference)
6262

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,5 +174,5 @@ When adding new examples:
174174
## Support
175175

176176
- [Documentation](../docs/)
177-
- [GitHub Issues](https://github.com/fjcorp/terraform-provider-openai/issues)
177+
- [GitHub Issues](https://github.com/mkdev-me/terraform-provider-openai/issues)
178178
- [API Reference](https://platform.openai.com/docs/api-reference)

examples/assistants/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
openai = {
4-
source = "fjcorp/openai"
4+
source = "mkdev-me/openai"
55
version = "1.0.0"
66
}
77
}

examples/audio/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
openai = {
4-
source = "fjcorp/openai"
4+
source = "mkdev-me/openai"
55
version = "1.0.0"
66
}
77
}

examples/audio/schema.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

examples/batch/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
terraform {
55
required_providers {
66
openai = {
7-
source = "fjcorp/openai"
7+
source = "mkdev-me/openai"
88
version = "~> 1.0.0"
99
}
1010
local = {

examples/chat_completion/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
openai = {
4-
source = "fjcorp/openai"
4+
source = "mkdev-me/openai"
55
version = "1.0.0"
66
}
77
}

0 commit comments

Comments
 (0)