Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hashicorp/terraform-provider-infoblox
This provider has moved to https://github.com/infobloxopen/terraform-provider-infoblox
https://github.com/hashicorp/terraform-provider-infoblox
infoblox terraform terraform-provider
Last synced: about 1 month ago
JSON representation
This provider has moved to https://github.com/infobloxopen/terraform-provider-infoblox
- Host: GitHub
- URL: https://github.com/hashicorp/terraform-provider-infoblox
- Owner: hashicorp
- License: mpl-2.0
- Archived: true
- Created: 2020-04-13T16:58:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-18T09:08:10.000Z (almost 4 years ago)
- Last Synced: 2024-09-24T06:31:21.320Z (about 1 month ago)
- Topics: infoblox, terraform, terraform-provider
- Language: Go
- Homepage: https://github.com/infobloxopen/terraform-provider-infoblox
- Size: 8.55 MB
- Stars: 12
- Watchers: 17
- Forks: 22
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Please note: This Terraform provider is archived, per our [provider archiving process](https://terraform.io/docs/internals/archiving.html). What does this mean?
1. The code repository and all commit history will still be available.
1. Existing released binaries will remain available on the releases site.
1. Issues and pull requests are not being monitored.
1. New releases will not be published.If anyone from the community or an interested third party is willing to maintain it, they can fork the repository and [publish it](https://www.terraform.io/docs/registry/providers/publishing.html) to the Terraform Registry. If you are interested in maintaining this provider, please reach out to the [Terraform Provider Development Program](https://www.terraform.io/guides/terraform-provider-development-program.html) at *[email protected]*.
# Terraform Provider for Infoblox
## Requirements
* [Terraform](https://www.terraform.io/downloads.html) 0.11.x or greater
* [Go](https://golang.org/doc/install) 1.12.x (to build the provider plugin)
* CNA License need to be installed on NIOS. If CNA is not installed then following default EA's should be added in NIOS side:
* VM Name :: String Type
* VM ID :: String Type
* Tenant ID :: String Type
* CMP Type :: String Type
* Cloud API Owned :: List Type (Values True, False)
* Network Name :: String Type## Building the Provider
Clone repository to `$GOPATH/src/github.com/terraform-providers/terraform-provider-infoblox`.
```sh
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone [email protected]:terraform-providers/terraform-provider-infoblox
```
Enter the provider directory and build the provider.
```sh
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-infoblox
$ export GO111MODULE="on"
$ make build
```## Using the Provider
If you're building the provider, follow the instructions to [install it as a plugin](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin). After the build is complete, copy the `terraform-provider-infoblox` binary into the same path as your terraform binary. After placing it into your plugins directory, run `terraform init` to initialize it.## Developing the Provider
If you wish to work on the provider, you'll first need Go installed on your machine (version 1.9+ is required). You'll also need to correctly setup a `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.
```sh
$ export GO111MODULE="on"
$ make build
...
$ $GOPATH/bin/terraform-provider-infoblox
...
```
To test the provider, you can simply run `make test`.
```sh
$ make test
```In order to run the full suite of acceptance tests `make testacc`.
```sh
$ make testacc
```
## Features of Provider
### Resource
* Creation of Network View in NIOS appliance
* Creation & Deletion of Network in NIOS appliance
* Allocation & Deallocation of IP from a Network
* Association & Disassociation of IP Address for a VM
* Creation and Deletion of A, CNAME, Host, and Ptr records### Data Source
* Supports Data Source for Network## Disclaimer
To use the provider for DNS purposes, a parent (i.e. zone) must already exist. The plugin does not support the creation of zones.
while running acceptance tests create a 10.0.0.0/24 network under default network view and create a reservation for 10.0.0.2 IP