Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scaleway/terraform-provider-scaleway
Terraform Scaleway provider
https://github.com/scaleway/terraform-provider-scaleway
scaleway terraform terraform-provider
Last synced: 6 days ago
JSON representation
Terraform Scaleway provider
- Host: GitHub
- URL: https://github.com/scaleway/terraform-provider-scaleway
- Owner: scaleway
- License: mpl-2.0
- Created: 2017-06-05T20:53:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T09:36:55.000Z (7 days ago)
- Last Synced: 2024-10-29T11:44:59.462Z (7 days ago)
- Topics: scaleway, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/scaleway/
- Size: 30.8 MB
- Stars: 199
- Watchers: 18
- Forks: 123
- Open Issues: 83
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
# Terraform Provider for Scaleway
- [Provider Documentation Website](https://www.terraform.io/docs/providers/scaleway/index.html)
- Slack: [Scaleway-community Slack][slack-scaleway] ([#terraform][slack-terraform])
- [![Go Report Card](https://goreportcard.com/badge/github.com/scaleway/terraform-provider-scaleway/v2)](https://goreportcard.com/report/github.com/scaleway/terraform-provider-scaleway/v2)
[slack-scaleway]: https://slack.scaleway.com/
[slack-terraform]: https://scaleway-community.slack.com/app_redirect?channel=terraform## Requirements
- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.11 (to build the provider plugin)## Building The Provider
Clone repository to: `$GOPATH/src/github.com/scaleway/terraform-provider-scaleway`
```sh
$ mkdir -p $GOPATH/src/github.com/scaleway; cd $GOPATH/src/github.com/scaleway
$ git clone [email protected]:scaleway/terraform-provider-scaleway.git
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/scaleway/terraform-provider-scaleway
$ make build
```## Using the provider
See the [Scaleway Provider Documentation](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs) to get started using the Scaleway provider.
## Developing the Provider
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.13+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.
To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
You have the option to [override](https://www.terraform.io/cli/config/config-file#development-overrides-for-provider-developers) the intended version
```sh
$ make build
...
$ $GOPATH/bin/terraform-provider-scaleway
...
```Please refer to the [TESTING.md](TESTING.md) for testing.