Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/e-breuninger/terraform-provider-netbox
Terraform provider to interact with Netbox
https://github.com/e-breuninger/terraform-provider-netbox
netbox terraform terraform-provider
Last synced: 7 days ago
JSON representation
Terraform provider to interact with Netbox
- Host: GitHub
- URL: https://github.com/e-breuninger/terraform-provider-netbox
- Owner: e-breuninger
- License: mpl-2.0
- Created: 2020-08-19T12:00:13.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-11T16:22:52.000Z (25 days ago)
- Last Synced: 2024-10-14T03:21:46.407Z (23 days ago)
- Topics: netbox, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/e-breuninger/netbox/latest/docs
- Size: 1.8 MB
- Stars: 180
- Watchers: 13
- Forks: 132
- Open Issues: 77
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-netbox - e-breuninger/terraform-provider-netbox - Terraform provider to interact with Netbox. (Terraform)
- awesome-netbox - e-breuninger/terraform-provider-netbox - Terraform provider to interact with Netbox (Automation)
README
# terraform-provider-netbox
The Terraform Netbox provider is a plugin for Terraform that allows for the full lifecycle management of [Netbox](https://netbox.readthedocs.io/en/stable/) resources.
This provider is maintained by E. Breuninger.See: [Official documentation](https://registry.terraform.io/providers/e-breuninger/netbox/latest/docs) in the Terraform registry.
## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= 0.12.x
- [Go](https://golang.org/doc/install) >= 1.14## Supported netbox versions
Netbox often makes breaking API changes even in non-major releases. Check the table below to see which version a provider was tested against. It is generally recommended to use the provider version matching your Netbox version. We aim to always support the latest minor version of Netbox.
Since version [1.6.6](https://github.com/e-breuninger/terraform-provider-netbox/commit/0b0b2fffa54d4ab2e5f1677e948b01e56ba211c8), each version of the provider has a built-in list of all Netbox versions it supports at release time. Upon initialization, the provider will probe your Netbox version and include a (non-blocking) warning if the used Netbox version is not supported.
| Netbox version | Provider version |
| --------------- | ---------------- |
| v4.0.0 - 4.0.11 | v3.9.0 and up |
| v3.7.0 - 3.7.8 | v3.8.0 - 3.8.9 |
| v3.6.0 - 3.6.9 | v3.7.0 - 3.7.7 |
| v3.5.1 - 3.5.9 | v3.6.x |
| v3.4.3 - 3.4.10 | v3.5.x |
| v3.3.0 - 3.4.2 | v3.0.x - 3.5.1 |
| v3.2.0 - 3.2.9 | v2.0.x |
| v3.1.9 | v1.6.0 - 1.6.7 |
| v3.1.3 | v1.1.x - 1.5.2 |
| v3.0.9 | v1.0.x |
| v2.11.12 | v0.3.x |
| v2.10.10 | v0.2.x |
| v2.9 | v0.1.x |## Building The Provider
1. Clone the repository
1. Enter the repository directory
1. Build the provider using the Go `install` command:```sh
go install
```## Installation
Starting with Terraform 0.13, you can download the provider via the Terraform registry.
For further information on how to use third party providers, see the [Terraform documentation](https://www.terraform.io/docs/configuration/providers.html)
Releases for all major plattforms are available on the release page.
## Using the provider
Here is a short example on how to use this provider:
```hcl
provider "netbox" {
server_url = "https://demo.netbox.dev"
api_token = ""
}resource "netbox_platform" "testplatform" {
name = "my-test-platform"
}
```For a more examples, see the [provider documentation](https://registry.terraform.io/providers/e-breuninger/netbox/latest/docs).
## Developing the Provider
If you wish to work on the provider, you need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).
To compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
To generate or update documentation, run `make docs`.
In order to run the suite of unit tests, run `make test`.
In order to run the full suite of acceptance tests, run `make testacc`.
In order to run a single specific acceptance test, run
```sh
TEST_FUNC= make testacc-specific-test
```For example:
```sh
TEST_FUNC=TestAccNetboxLocationDataSource_basic make testacc-specific-test
```_Note:_ Acceptance tests create a docker compose stack on port 8001.
```sh
make testacc
```If you notice a failed test, it might be due to a stale netbox data volume. Before concluding there is a problem,
refresh the docker containers by running `docker-compose down --volumes` in the `docker` directory. Then run the tests again.If you get `too many open files` errors when running the acceptance test suite locally on Linux, your user limit for open file descriptors might be too low. You can increase that limit with `ulimit -n 2048`.
## Contribution
We focus on virtual machine management and IPAM. If you want to contribute more resources to this provider, feel free to make a PR.