https://github.com/sst/provider
https://github.com/sst/provider
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sst/provider
- Owner: sst
- Created: 2024-10-11T21:20:08.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-10-17T14:48:48.000Z (12 months ago)
- Last Synced: 2024-10-20T22:31:36.512Z (12 months ago)
- Language: TypeScript
- Size: 22.5 KB
- Stars: 10
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## SST Provider
This repository automatically generates pulumi packages from terraform providers
### Adding a provider
Submit a PR to add a .toml to the `metadata` folder
```toml
name = "planetscale"
terraform = "registry.terraform.io/planetscale/planetscale"
version = "0.0.7"
```### Updating a provider
Submit a PR bumping the version number. If something went wrong and we need to regenerate the same version add a `suffix` to the provider with an incrementing number.
```toml
name = "planetscale"
terraform = "registry.terraform.io/planetscale/planetscale"
version = "0.0.7"
suffix = "1"
```