From 553537a6b9a464666e97b3aefe3a711b0d9056be Mon Sep 17 00:00:00 2001 From: marioconsalvo <124145774+marioconsalvo@users.noreply.github.com> Date: Wed, 21 Aug 2024 16:50:40 +0200 Subject: [PATCH 1/5] update readme --- README.md | 470 +++++------------------------------------------------- 1 file changed, 36 insertions(+), 434 deletions(-) diff --git a/README.md b/README.md index 68b394b..1f3a1de 100644 --- a/README.md +++ b/README.md @@ -1,459 +1,61 @@ -# Terraform Bridge Provider Boilerplate +[![Actions Status](https://github.com/unobravo/pulumi-mysql/workflows/master/badge.svg)](https://github.com/unobravo/pulumi-mysql/actions) +[![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@unobravo/unobravo-mysql) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/unobravo/pulumi-mysql/sdk/go) +[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) +[!![Static Badge](https://img.shields.io/badge/Terraform_Provider-v3.0.63-purple)](https://github.com/petoju/terraform-provider-mysql) -This repository contains boilerplate code for building a new Pulumi provider which wraps an existing Terraform provider. +# MySQL Resource Provider -## Background +The MySQL resource provider for Pulumi lets you manage MySQL resources in your cloud programs. To use +this package, please [install the Pulumi CLI first](https://pulumi.io/). -This repository is part of the [guide for authoring and publishing a Pulumi Package](https://www.pulumi.com/docs/guides/pulumi-packages/how-to-author). +## Installing -Learn about the concepts behind [Pulumi Packages](https://www.pulumi.com/docs/guides/pulumi-packages/#pulumi-packages). +This package is available in many languages in the standard packaging formats. -## Creating a Pulumi Terraform Bridge Provider +### Node.js (Java/TypeScript) -The following instructions cover: +To use from JavaScript or TypeScript in Node.js, install using either `npm`: -- providers maintained by Pulumi (denoted with a "Pulumi Official" checkmark on the Pulumi registry) -- providers published and maintained by the Pulumi community, referred to as "third-party" providers + $ npm install @unobravo/pulumi-mysql -We showcase a Pulumi-owned provider based on an upstream provider named `terraform-provider-foo`. Substitute appropriate values below for your use case. +or `yarn`: -> Note: If the name of the desired Pulumi provider differs from the name of the Terraform provider, you will need to carefully distinguish between the references - see for an example. + $ yarn add @unobravo/pulumi-mysql -### Prerequisites - -Ensure the following tools are installed and present in your `$PATH`: - -- [`pulumictl`](https://github.com/pulumi/pulumictl#installation) -- [Go 1.17](https://golang.org/dl/) or 1.latest -- [NodeJS](https://nodejs.org/en/) Active or maintenance version ([Node.js Releases](https://nodejs.org/en/about/previous-releases)). We recommend using [nvm](https://github.com/nvm-sh/nvm) to manage NodeJS installations. -- [Yarn](https://yarnpkg.com/) -- [TypeScript](https://www.typescriptlang.org/) -- [Python](https://www.python.org/downloads/) (called as `python3`). For recent versions of MacOS, the system-installed version is fine. -- [.NET](https://dotnet.microsoft.com/download) - -### Creating and Initializing the Repository - -Pulumi offers this repository as a [GitHub template repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template) for convenience. From this repository: - -1. Click "Use this template". -1. Set the following options: - - Owner: pulumi (third-party: your GitHub organization/username) - - Repository name: pulumi-foo (third-party: preface your repo name with "pulumi" as standard practice) - - Description: Pulumi provider for Foo - - Repository type: Public -1. Clone the generated repository. - -From the templated repository: - -1. Run the following command to update files to use the name of your provider (third-party: use your GitHub organization/username): - - ```bash - make prepare NAME=foo REPOSITORY=github.com/pulumi/pulumi-foo ORG=myorg - ``` - - This will do the following: - - rename folders in `provider/cmd` to `pulumi-resource-foo` and `pulumi-tfgen-foo` - - replace dependencies in `provider/go.mod` to reflect your repository name - - find and replace all instances of the boilerplate `xyz` with the `NAME` of your provider. - - find and replace all instances of the boilerplate `abc` with the `ORG` of your provider. - - replace all instances of the `github.com/pulumi/pulumi-xyz` repository with the `REPOSITORY` location - - Note for third-party providers: - - If you intend to publish on the Pulumi registry you will want to update the `DisplayName`, `Publisher`, and `Homepage` values in `provider/resources.go` to use your desired casing. - - -2. Modify `README-PROVIDER.md` to include the following (we'll rename it to `README.md` toward the end of this guide): - - Any desired build status badges. - - An introductory paragraph describing the type of resources the provider manages, e.g. "The Foo provider for Pulumi manages resources for [Foo](http://example.com/). - - In the "Installing" section, correct package names for the various SDK libraries in the languages Pulumi supports. - - In the "Configuration" section, any configurable options for the provider. These may include, but are not limited to, environment variables or options that can be set via [`pulumi config set`](https://www.pulumi.com/docs/reference/cli/pulumi_config_set/). - - In the "Reference" section, provide a link to the to-be-published documentation. - - Feel free to refer to [the Pulumi AWS provider README](https://github.com/pulumi/pulumi-aws) as an example. - -### Composing the Provider Code - Prerequisites - -Pulumi provider repositories have the following general structure: - -- `examples/` contains sample code which may optionally be included as integration tests to be run as part of a CI/CD pipeline. -- `provider/` contains the Go code used to create the provider as well as generate the SDKs in the various languages that Pulumi supports. - - `provider/cmd/pulumi-tfgen-foo` generates the Pulumi resource schema (`schema.json`), based on the Terraform provider's resources. - - `provider/cmd/pulumi-resource-foo` generates the SDKs in all supported languages from the schema, placing them in the `sdk/` folder. - - `provider/pkg/resources.go` is the location where we will define the Terraform-to-Pulumi mappings for resources. -- `sdk/` contains the generated SDK code for each of the language platforms that Pulumi supports, with each supported platform in a separate subfolder. - -1. In `provider/go.mod`, add a reference to the upstream Terraform provider in the `require` section, e.g. - - ```go - github.com/foo/terraform-provider-foo v0.4.0 - ``` - -1. In `provider/resources.go`, ensure the reference in the `import` section uses the correct Go module path, e.g.: - - ```go - github.com/foo/terraform-provider-foo/foo - ``` - -1. Download the dependencies: - - ```bash - cd provider && go mod tidy && cd - - ``` - -1. Create the schema by running the following command: - - ```bash - make tfgen - ``` - - Note warnings about unmapped resources and data sources in the command's output. We map these in the next section, e.g.: - - ```text - warning: resource foo_something not found in provider map; skipping - warning: resource foo_something_else not found in provider map; skipping - warning: data source foo_something not found in provider map; skipping - warning: data source foo_something_else not found in provider map; skipping - ``` - -## Adding Mappings, Building the Provider and SDKs +### Python > [!NOTE] -> Recent versions of this repository leverage [automatic token mapping](https://github.com/pulumi/pulumi-terraform-bridge/blob/master/docs/automatic-token-mapping.md) as an alternative to mapping resources manually. If you did not see any warnings about unmapped resources in the step above, you may skip directly to building the provider binary. - -In this section we will add the mappings that allow the interoperation between the Pulumi provider and the Terraform provider. Terraform resources map to an identically named concept in Pulumi. Terraform data sources map to plain old functions in your supported programming language of choice. Pulumi also allows provider functions and resources to be grouped into _namespaces_ to improve the cohesion of a provider's code, thereby making it easier for developers to use. If your provider has a large number of resources, consider using namespaces to improve usability. - -The following instructions all pertain to `provider/resources.go`, in the section of the code where we construct a `tfbridge.ProviderInfo` object: - -1. **Add resource mappings:** For each resource in the provider, add an entry in the `Resources` property of the `tfbridge.ProviderInfo`, e.g.: - - ```go - // Most providers will have all resources (and data sources) in the main module. - // Note the mapping from snake_case HCL naming conventions to UpperCamelCase Pulumi SDK naming conventions. - // The name of the provider is omitted from the mapped name due to the presence of namespaces in all supported Pulumi languages. - "foo_something": {Tok: tfbridge.MakeResource(mainPkg, mainMod, "Something")}, - "foo_something_else": {Tok: tfbridge.MakeResource(mainPkg, mainMod, "SomethingElse")}, - ``` - -1. **Add CSharpName (if necessary):** Dotnet does not allow for fields named the same as the enclosing type, which sometimes results in errors during the dotnet SDK build. - If you see something like - - ```text - error CS0542: 'ApiKey': member names cannot be the same as their enclosing type [/Users/guin/go/src/github.com/pulumi/pulumi-artifactory/sdk/dotnet/Pulumi.Artifactory.csproj] - ``` - - you'll want to give your Resource a CSharpName, which can have any value that makes sense: - - ```go - "foo_something_dotnet": { - Tok: tfbridge.MakeResource(mainPkg, mainMod, "SomethingDotnet"), - Fields: map[string]*tfbridge.SchemaInfo{ - "something_dotnet": { - CSharpName: "SpecialName", - }, - }, - }, - ``` - - [See the underlying terraform-bridge code here.](https://github.com/pulumi/pulumi-terraform-bridge/blob/master/pkg/tfbridge/info.go#L168) -1. **Add data source mappings:** For each data source in the provider, add an entry in the `DataSources` property of the `tfbridge.ProviderInfo`, e.g.: - - ```go - // Note the 'get' prefix for data sources - "foo_something": {Tok: tfbridge.MakeDataSource(mainPkg, mainMod, "getSomething")}, - "foo_something_else": {Tok: tfbridge.MakeDataSource(mainPkg, mainMod, "getSomethingElse")}, - ``` - -1. **Add documentation mapping (sometimes needed):** If the upstream provider's repo is not a part of the `terraform-providers` GitHub organization, specify the `GitHubOrg` property of `tfbridge.ProviderInfo` to ensure that documentation is picked up by the codegen process, and that attribution for the upstream provider is correct, e.g.: - - ```go - GitHubOrg: "foo", - ``` - -1. **Add provider configuration overrides (not typically needed):** Pulumi's Terraform bridge automatically detects configuration options for the upstream provider. However, in rare cases these settings may need to be overridden, e.g. if we want to change an environment variable default from `API_KEY` to `FOO_API_KEY`. Examples of common uses cases: - - ```go - "additional_required_parameter": {}, - "additional_optional_string_parameter": { - Default: &tfbridge.DefaultInfo{ - Value: "default_value", - }, - "additional_optional_boolean_parameter": { - Default: &tfbridge.DefaultInfo{ - Value: true, - }, - // Renamed environment variables can be accounted for like so: - "apikey": { - Default: &tfbridge.DefaultInfo{ - EnvVars: []string{"FOO_API_KEY"}, - }, - ``` - -1. Build the provider binary and ensure there are no warnings about unmapped resources and no warnings about unmapped data sources: - - ```bash - make provider - ``` - - You may see warnings about documentation and examples, including "unexpected code snippets". These can be safely ignored for now. Pulumi will add additional documentation on mapping docs in a future revision of this guide. - -1. Build the SDKs in the various languages Pulumi supports: - - ```bash - make build_sdks - ``` - -1. Ensure the Golang SDK is a proper go module: - - ```bash - cd sdk && go mod tidy && cd - - ``` - - This will pull in the correct dependencies in `sdk/go.mod` as well as setting the dependency tree in `sdk/go.sum`. - -1. Finally, ensure the provider code conforms to Go standards: - - ```bash - make lint_provider - ``` - - Fix any issues found by the linter. - -**Note:** If you make revisions to code in `resources.go`, you must re-run the `make tfgen` target to regenerate the schema. -The `make tfgen` target will take the file `schema.json` and serialize it to a byte array so that it can be included in the build output. -(This is a holdover from Go 1.16, which does not have the ability to directly embed text files. We are working on removing the need for this step.) +> NOT PUBLISHED -## Sample Program +### Go -In this section, we will create a Pulumi program in TypeScript that utilizes the provider we created to ensure everything is working properly. +To use from Go, use `go get` to grab the latest version of the library -1. Create an account with the provider's service and generate any necessary credentials, e.g. API keys. - - Email: bot@pulumi.com - - Password: (Create a random password in 1Password with the maximum length and complexity allowed by the provider.) - - Ensure all secrets (passwords, generated API keys) are stored in Pulumi's 1Password vault. + $ go get github.com/unobravo/pulumi-mysql/sdk -1. Copy the `pulumi-resource-foo` binary generated by `make provider` and place it in your `$PATH` (`$GOPATH/bin` is a convenient choice), e.g.: +### .NET - ```bash - cp bin/pulumi-resource-foo $GOPATH/bin - ``` - -1. Tell Yarn to use your local copy of the SDK: - - ```bash - make install_nodejs_sdk - ``` - -1. Create a new Pulumi program in the `examples/` directory, e.g.: - - ```bash - mkdir examples/my-example/ts # Change "my-example" to something more meaningful. - cd examples/my-example/ts - pulumi new typescript - # (Go through the prompts with the default values) - npm install - yarn link @pulumi/foo - ``` - -1. Create a minimal program for the provider, i.e. one that creates the smallest-footprint resource. Place this code in `index.ts`. -1. Configure any necessary environment variables for authentication, e.g `$FOO_USERNAME`, `$FOO_TOKEN`, in your local environment. -1. Ensure the program runs successfully via `pulumi up`. -1. Once the program completes successfully, verify the resource was created in the provider's UI. -1. Destroy any resources created by the program via `pulumi destroy`. - -Optionally, you may create additional examples for SDKs in other languages supported by Pulumi: - -1. Python: - - ```bash - mkdir examples/my-example/py - cd examples/my-example/py - pulumi new python - # (Go through the prompts with the default values) - source venv/bin/activate # use the virtual Python env that Pulumi sets up for you - pip install pulumi_foo - ``` - -1. Follow the steps above to verify the program runs successfully. - -## Add End-to-end Testing - -We can run integration tests on our examples using the `*_test.go` files in the `examples/` folder. - -1. Add code to `examples_nodejs_test.go` to call the example you created, e.g.: - - ```go - // Swap out MyExample and "my-example" below with the name of your integration test. - func TestAccMyExampleTs(t *testing.T) { - test := getJSBaseOptions(t). - With(integration.ProgramTestOptions{ - Dir: filepath.Join(getCwd(t), "my-example", "ts"), - }) - integration.ProgramTest(t, &test) - } - ``` - -1. Add a similar function for each example that you want to run in an integration test. For examples written in other languages, create similar files for `examples_${LANGUAGE}_test.go`. - -1. You can run these tests locally via Make: - - ```bash - make test - ``` - - You can also run each test file separately via test tags: - - ```bash - cd examples && go test -v -tags=nodejs - ``` - -## Configuring CI with GitHub Actions - -### Third-party providers - -1. Follow the instructions laid out in the [deployment templates](./deployment-templates/README-DEPLOYMENT.md). - -### Pulumi Internal - -In this section, we'll add the necessary configuration to work with GitHub Actions for Pulumi's standard CI/CD workflows for providers. - -1. Generate GitHub workflows per [the instructions in the ci-mgmt repository](https://github.com/pulumi/ci-mgmt/) and copy to `.github/` in this repository. - -1. Ensure that any required secrets are present as repository-level [secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) in GitHub. These will be used by the integration tests during the CI/CD process. - -1. Repository settings: Toggle `Allow auto-merge` on in your provider repo to automate GitHub Actions workflow updates. - -## Final Steps - -1. Ensure all required configurations (API keys, etc.) are documented in README-PROVIDER.md. - -1. Replace this file with the README for the provider and push your changes: - - ```bash - mv README-PROVIDER.md README.md - ``` - -1. If publishing the npm package fails during the "Publish SDKs" Action, perform the following steps: - 1. Go to [NPM Packages](https://www.npmjs.com/) and sign in as pulumi-bot. - 1. Click on the bot's profile pic and navigate to "Packages". - 1. On the left, under "Organizations, click on the Pulumi organization. - 1. On the last page of the listed packages, you should see the new package. - 1. Under "Settings", set the Package Status to "public". - -Now you are ready to use the provider, cut releases, and have some well-deserved :ice_cream:! - -## Building the Provider Locally - -There are 2 ways the provider can be built locally: - -`make provider` will use the current operating system and architecture to create a binary that can be used on your PATH. - -To build the provider for another set of operating systems / architectures, the project uses [goreleaser](https://goreleaser.com/). -Goreleaser, a CLI tool, that allows a user to build a matrix of binaries. - -Create a `.goreleaser.yml` file in the root of your project: - -```yaml - -archives: -- id: archive - name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}" -before: - hooks: - - make tfgen -builds: -- binary: pulumi-resource-xyz - dir: provider - goarch: - - amd64 - - arm64 - goos: - - darwin - - windows - - linux - ignore: [] - ldflags: - - -X github.com/pulumi/pulumi-xyz/provider/pkg/version.Version={{.Tag}} - main: ./cmd/pulumi-resource-xyz/ - sort: asc - use: git -release: - disable: false -snapshot: - name_template: "{{ .Tag }}-SNAPSHOT" -``` - -To build the provider for the combination of architectures and operating systems, you can run the following CLI command: - -```bash -goreleaser build --rm-dist --skip-validate -``` - -That will ensure that a list of binaries are available to use: - -```bash - -▶ tree dist -dist -├── CHANGELOG.md -├── artifacts.json -├── config.yaml -├── metadata.json -├── pulumi-xyz_darwin_amd64_v1 -│ └── pulumi-resource-xyz -├── pulumi-xyz_darwin_arm64 -│ └── pulumi-resource-xyz -├── pulumi-xyz_linux_amd64_v1 -│ └── pulumi-resource-xyz -├── pulumi-xyz_linux_arm64 -│ └── pulumi-resource-xyz -├── pulumi-xyz_windows_amd64_v1 -│ └── pulumi-resource-xyz.exe -└── pulumi-xyz_windows_arm64 - └── pulumi-resource-xyz.exe -``` - -Any of the provider binaries can be used to target the correct machine architecture - -## The Shim Pattern - -If you receive the following error: `use of internal package github.com/example/terraform-provider-example/internal/provider not allowed`, you need to use -the shim model below, and replace the example item: - -```bash - -mkdir -p provider/shim -cat <<-EOF> provider/shim/go.mod -module github.com/example/terraform-provider-example/shim - -go 1.18 - -require github.com/hashicorp/terraform-plugin-sdk/v2 v2.22.0 -require github.com/example/terraform-provider-example v1.0.0 - -EOF +> [!NOTE] +> NOT PUBLISHED -cat <<-EOF> provider/shim/shim.go -package shim +## Configuration -import ( - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/example/terraform-provider-example/internal/provider" -) +The following configuration points are available: -// fix provider.Provider here to match whats in internal/provider -func Provider() *schema.Provider { - return provider.Provider() -} +- `mysql:endpoint` (required) - The address of the MySQL server to use. Most often a "hostname:port" pair, but may also + be an absolute path to a Unix socket when the host OS is Unix-compatible. Can be set via `MYSQL_ENDPOINT` environment variable. +- `mysql:username` (required) - Username to use to authenticate with the server. Can be set via `MYSQL_USERNAME` environment variable. +- `mysql:password` - (optional) Password for the given user, if that user has a password. Can be set via `MYSQL_PASSWORD` environment variable. +- `mysql:tls` - (optional) The TLS configuration. One of false, true, or skip-verify. Defaults to `false`. Can be set via + `MYSQL_TLS_CONFIG` environment variable. +- `mysql:proxy` - (Optional) Proxy socks url, can also be sourced from `ALL_PROXY` or `all_proxy` environment variables. -EOF +## Reasons -cd provider/shim/ && go mod tidy && cd ../../ +This prvider bridge the [petoju/terraform-provider-mysql](https://github.com/petoju/terraform-provider-mysql) terraform provider to pulumi -cat <> provider/go.mod -replace github.com/example/terraform-provider-example/shim => ./shim -require github.com/example/terraform-provider-example/shim v0.0.0 -EOF +## Reference -cd provider && go mod tidy -``` - \ No newline at end of file +For further information, please visit [the MySQL provider docs](https://www.pulumi.com/docs/intro/cloud-providers/mysql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/mysql). From d0a5bea8796363c1b430712e2fbb4c33f428da5a Mon Sep 17 00:00:00 2001 From: marioconsalvo <124145774+marioconsalvo@users.noreply.github.com> Date: Wed, 21 Aug 2024 16:51:43 +0200 Subject: [PATCH 2/5] fix badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f3a1de..f3caf06 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@unobravo/unobravo-mysql) [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/unobravo/pulumi-mysql/sdk/go) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) -[!![Static Badge](https://img.shields.io/badge/Terraform_Provider-v3.0.63-purple)](https://github.com/petoju/terraform-provider-mysql) +[![Static Badge](https://img.shields.io/badge/Terraform_Provider-v3.0.63-purple)](https://github.com/petoju/terraform-provider-mysql) # MySQL Resource Provider From 5cc49a192d015c85ae201de414511c199dca2587 Mon Sep 17 00:00:00 2001 From: marioconsalvo <124145774+marioconsalvo@users.noreply.github.com> Date: Mon, 26 Aug 2024 16:44:41 +0200 Subject: [PATCH 3/5] update doc --- README-PROVIDER.md | 56 ---------------------------------------------- README.md | 17 ++++++++------ 2 files changed, 10 insertions(+), 63 deletions(-) delete mode 100644 README-PROVIDER.md diff --git a/README-PROVIDER.md b/README-PROVIDER.md deleted file mode 100644 index fd3567b..0000000 --- a/README-PROVIDER.md +++ /dev/null @@ -1,56 +0,0 @@ -# Foo Resource Provider - -The Foo Resource Provider lets you manage [Foo](http://example.com) resources. - -## Installing - -This package is available for several languages/platforms: - -### Node.js (JavaScript/TypeScript) - -To use from JavaScript or TypeScript in Node.js, install using either `npm`: - -```bash -npm install @pulumi/foo -``` - -or `yarn`: - -```bash -yarn add @pulumi/foo -``` - -### Python - -To use from Python, install using `pip`: - -```bash -pip install pulumi_foo -``` - -### Go - -To use from Go, use `go get` to grab the latest version of the library: - -```bash -go get github.com/pulumi/pulumi-foo/sdk/go/... -``` - -### .NET - -To use from .NET, install using `dotnet add package`: - -```bash -dotnet add package Pulumi.Foo -``` - -## Configuration - -The following configuration points are available for the `foo` provider: - -- `foo:apiKey` (environment: `FOO_API_KEY`) - the API key for `foo` -- `foo:region` (environment: `FOO_REGION`) - the region in which to deploy resources - -## Reference - -For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/foo/api-docs/). diff --git a/README.md b/README.md index f3caf06..1556d41 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ [![Actions Status](https://github.com/unobravo/pulumi-mysql/workflows/master/badge.svg)](https://github.com/unobravo/pulumi-mysql/actions) -[![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@unobravo/unobravo-mysql) +[![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@unobravo/pulumi-mysql) [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/unobravo/pulumi-mysql/sdk/go) -[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Static Badge](https://img.shields.io/badge/Terraform_Provider-v3.0.63-purple)](https://github.com/petoju/terraform-provider-mysql) +[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) # MySQL Resource Provider @@ -13,7 +13,7 @@ this package, please [install the Pulumi CLI first](https://pulumi.io/). This package is available in many languages in the standard packaging formats. -### Node.js (Java/TypeScript) +### Node.js (JavaScript/TypeScript) To use from JavaScript or TypeScript in Node.js, install using either `npm`: @@ -25,7 +25,7 @@ or `yarn`: ### Python -> [!NOTE] +> [!WARNING] > NOT PUBLISHED ### Go @@ -36,7 +36,7 @@ To use from Go, use `go get` to grab the latest version of the library ### .NET -> [!NOTE] +> [!WARNING] > NOT PUBLISHED ## Configuration @@ -53,9 +53,12 @@ The following configuration points are available: ## Reasons -This prvider bridge the [petoju/terraform-provider-mysql](https://github.com/petoju/terraform-provider-mysql) terraform provider to pulumi +This provider bridges [petoju/terraform-provider-mysql](https://github.com/petoju/terraform-provider-mysql) to Pulumi + +Currently the official [pulumi-mysql](https://www.pulumi.com/docs/reference/pkg/mysql) uses the [hashicorp/terraform-provider-mysql](https://github.com/hashicorp/terraform-provider-mysql/tree/master) which has been archived in 2021. +Based on [this issue](https://github.com/pulumi/pulumi-mysql/issues/145), Pulumi is still investigating the migration from an archived terraform provider to a community fork. ## Reference -For further information, please visit [the MySQL provider docs](https://www.pulumi.com/docs/intro/cloud-providers/mysql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/mysql). +For further information on the resources supported by the Terraform provider, please visit the [documentation](https://registry.terraform.io/providers/petoju/mysql/3.0.63/docs). From 6027aa1b561c7201decbb4a00320b5503b5734c8 Mon Sep 17 00:00:00 2001 From: marioconsalvo <124145774+marioconsalvo@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:44:02 +0200 Subject: [PATCH 4/5] python doc --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1556d41..294f9ed 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,12 @@ or `yarn`: ### Python -> [!WARNING] -> NOT PUBLISHED +To use from Python, install using `pip`: + + $ pip install git+https://github.com/unobravo/pulumi-mysql.git@v0.0.0#subdirectory=sdk/python + +> [!NOTE] +> NOT PUBLISHED ON PyPI ### Go @@ -60,5 +64,4 @@ Based on [this issue](https://github.com/pulumi/pulumi-mysql/issues/145), Pulumi ## Reference - For further information on the resources supported by the Terraform provider, please visit the [documentation](https://registry.terraform.io/providers/petoju/mysql/3.0.63/docs). From 785b24f0874c5156a3f375a64f5e775fa140751d Mon Sep 17 00:00:00 2001 From: marioconsalvo <124145774+marioconsalvo@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:52:02 +0200 Subject: [PATCH 5/5] action badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 294f9ed..4ea4c63 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Actions Status](https://github.com/unobravo/pulumi-mysql/workflows/master/badge.svg)](https://github.com/unobravo/pulumi-mysql/actions) +[![Actions Status](https://github.com/unobravo/pulumi-mysql/actions/workflows/release.yml/badge.svg)](https://github.com/unobravo/pulumi-mysql/actions) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@unobravo/pulumi-mysql) [![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/unobravo/pulumi-mysql/sdk/go) [![Static Badge](https://img.shields.io/badge/Terraform_Provider-v3.0.63-purple)](https://github.com/petoju/terraform-provider-mysql)