https://github.com/scaleway/terraform-provider-scaleway
  
  
    Terraform Scaleway provider 
    https://github.com/scaleway/terraform-provider-scaleway
  
scaleway terraform terraform-provider
        Last synced: 6 months 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 8 years ago)
- Default Branch: master
- Last Pushed: 2025-05-14T13:25:21.000Z (6 months ago)
- Last Synced: 2025-05-14T14:51:43.644Z (6 months ago)
- Topics: scaleway, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/scaleway/
- Size: 36.6 MB
- Stars: 208
- Watchers: 18
- Forks: 130
- Open Issues: 100
- 
            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])
- [](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 git@github.com: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.