Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stealthybox/terraform-infoblox
Terraform Provider for creating Host Records with the Infoblox REST API (minimum wapi v1.2.1)
https://github.com/stealthybox/terraform-infoblox
dockerized infoblox infoblox-wapi terraform-provider
Last synced: about 2 months ago
JSON representation
Terraform Provider for creating Host Records with the Infoblox REST API (minimum wapi v1.2.1)
- Host: GitHub
- URL: https://github.com/stealthybox/terraform-infoblox
- Owner: stealthybox
- License: mit
- Created: 2017-05-18T19:02:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-18T21:14:31.000Z (over 7 years ago)
- Last Synced: 2024-06-20T08:05:00.992Z (6 months ago)
- Topics: dockerized, infoblox, infoblox-wapi, terraform-provider
- Language: Go
- Size: 4.88 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-infoblox
This is a Terraform Provider for creating Host Records with the Infoblox REST API.
(minimum wapi v1.2.1)#### design
This is a very simple provider that leverages the Infoblox REST API directly.
It does not use a vendored/external API for abstracting the transport.It currently only supports creating host records (A/PTR collections in Infoblox).
Contributions are welcome!Next steps are to add auto-discovery of valid hostnames and IP addresses using the infoblox search API's
#### build
The `./build` script uses docker to cache deps in `./gosrc_amd64` and build the code.
The resulting artifact will be at `./sandbox/terraform-provider-infoblox` where it can be used with the example `infoblox.tf`.#### runtime
Dependencies on [resty](https://github.com/go-resty/resty) result in dynamic bindings to net in glibc. (guessing)
This will cause Terraform to fail to exec the provider in alpine containers like `hashicorp/terraform`.Use `stealthybox/infra` for an alpine terraform with glibc:
```bash
docker run -v/$PWD://terra -w//terra stealthybox/infra terraform plan
```
... or just run terraform on your local machine like a normal person.