Terraform Infoblox Provider
The Infoblox provider is used to interact with the resources supported by Infoblox. The provider needs to be configured with the proper credentials before it can be used.
Download builds for Darwin, Linux and Windows from the releases page.
# Configure the Infoblox provider
provider "infoblox" {
username = "${var.infoblox_username}"
password = "${var.infoblox_password}"
host = "${var.infoblox_host}"
sslverify = "${var.infoblox_sslverify}"
usecookies = "${var.infoblox_usecookies}"
}
# Create a record
resource "infoblox_record_a" "www" {
...
}
The following arguments are supported:
username
- (Required) The Infoblox username. It must be provided, but it can also be sourced from theINFOBLOX_USERNAME
environment variable.password
- (Required) The password associated with the username. It must be provided, but it can also be sourced from theINFOBLOX_PASSWORD
environment variable.host
- (Required) The base url for the Infoblox REST API, but it can also be sourced from theINFOBLOX_HOST
environment variable.sslverify
- (Required) Enable ssl for the REST api, but it can also be sourced from theINFOBLOX_SSLVERIFY
environment variable.usecookies
- (Optional) Use cookies to connect to the REST API, but it can also be sourced from theINFOBLOX_USECOOKIES
environment variable
Provides an Infoblox Host record resource.
resource "infoblox_record_host" "host" {
name = "terraformhost.platform.test-aib.pri"
configure_for_dns = false
ipv4addr {
address = "10.89.130.30"
}
ipv4addr {
address = "10.89.130.31"
configure_for_dhcp = true
mac = "01-23-45-67-89-10"
}
}
name
- (Required) The name of the recordipv4addr
- (Required) An IPv4 address object. At least oneiv4addr
oripv6addr
must be specified. See ipv4addr options below.ipv6addr
- (Required) An IPv6 address object. At least oneiv4addr
oripv6addr
must be specified. See ipv6addr options below.configure_for_dns
- (Boolean, Optional) Specify whether DNS should be configured for the record; defaults tofalse
comment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
address
- (Required) The IPv4 address of the objectconfigure_for_dhcp
- (Boolean, Optional) Specifies whether the IPv4 address object should be configured for DHCPmac
- (Optional) The MAC address of the resource
address
- (Required) The IPv6 address of the objectconfigure_for_dhcp
- (Boolean, Optional) Specifies whether the IPv4 address object should be configured for DHCPmac
- (Optional) The MAC address of the resource
Provides an Infoblox A record resource.
resource "infoblox_record_a" "web" {
address = "10.1.2.3"
name = "some.fqdn.lan"
comment = "ipv4 address for Acme web server"
ttl = 3600
view = "default"
}
The following arguments are supported:
address
- (Required) The IPv4 address of the recordname
- (Required) The FQDN of the recordcomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Provides an Infoblox AAAA record resource.
resource "infoblox_record_aaaa" "web" {
address = "2001:db8:85a3::8a2e:370:7334"
name = "some.fqdn.lan"
comment = "ipv6 address for Acme web server"
ttl = 3600
view = "default"
}
The following arguments are supported:
address
- (Required) The IPv6 address of the recordname
- (Required) The FQDN of the recordcomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Provides an Infoblox CNAME record resource.
resource "infoblox_record_cname" "www" {
canonical = "fqdn.lan"
name = "www.fqdn.lan"
comment = "ipv6 address for Acme web server"
ttl = 3600
view = "www.fqdn.lan is an alias for fqdn.lan"
}
The following arguments are supported:
canonical
- (Required) The canonical address to point toname
- (Required) The FQDN of the aliascomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Provides an Infoblox PTR record resource.
resource "infoblox_record_ptr" "ptr" {
ptrdname = "some.fqdn.lan"
address = "10.0.0.10.in-addr.arpa"
comment = "Reverse lookup for some.fqdn.lan"
ttl = 3600
view = "default"
}
The following arguments are supported:
ptrdname
- (Required) Theaddress
- (Required, conflicts withname
) This field is required if you do not use the name field. Either the IP address or name is required. Example: 10.0.0.11. If the PTR record belongs to a forward-mapping zone, this field is empty. Accepts both IPv4 and IPv6 addresses.name
- (Required, conflicts withaddress
) This field is required if you do not use the address field. Either the IP address or name is required. Example: 10.0.0.10.in.addr.arpacomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Provides an Infoblox TXT record resource.
resource "infoblox_record_txt" "txt" {
name = "some.fqdn.lan"
text = "Welcome to the Jungle"
}
The following arguments are supported:
name
- (Required) The name of the TXT recordtext
- (Required) The text of the TXT recordcomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Provides an Infoblox SRV record resource.
resource "infoblox_record_srv" "srv" {
name = "bind_srv.domain.com"
port = 1234
priority = 1
weight = 1
target = "old.target.test.org"
}
The following arguments are supported:
name
- (Required) The name of the recordport
- (Integer, Required) The port of the SRV recordpriority
- (Integer, Required) The priority of the SRV recordweight
- (Integer, Required) The weight of the SRV recordtarget
- (Required) The target of the SRV recordcomment
- (Optional) The comment for the recordttl
- (Integer, Optional) The TTL of the recordview
- (Optional) The view of the record
Queries the next available IP address from a network and returns it in a computed variable that can be used by the infoblox_record resource.
# Acquire the next available IP from a network CIDR
# it will create a variable called "ipaddress"
resource "infoblox_ip" "ip" {
cidr = "10.0.0.0/24"
}
resource "infoblox_record_a" "web" {
address = "${infoblox_ip.ip.ipaddress}"
name = "some.fqdn.lan"
comment = "ipv4 address for Acme web server"
ttl = 3600
view = "default"
}
# Exclude specific IP addresses when acquiring next
# avaiable IP from a network CIDR
resource "infoblox_ip" "excludedIPAddress" {
cidr = "10.0.0.0/24"
exclude = [
"10.0.0.1",
"10.0.0.2"
# etc.
]
}
# Acquire free IP address from within a specific
# range of addresses
resource "infoblox_ip" "ipAddressFromRange" {
ip_range = "10.0.0.20-10.0.0.60"
}
The following arguments are supported:
cidr
- (Required) The network to search for - example 10.0.0.0/24. Cannot be specified withip_range
exclude
- (Optional) A list of IP addresses to excludeip_range
- (Required) The IP range to search within - example 10.0.0.20-10.0.0.40. Cannot be specified withcidr
The following resources are deprecated and will no longer see active development. It is recommended you use the dedicated infoblox_record_*
resources instead.
Provides a Infoblox record resource.
# Add a record to the domain
resource "infoblox_record" "foobar" {
value = "192.168.0.10"
name = "terraform"
domain = "mydomain.com"
type = "A"
ttl = 3600
}
See related part of Infoblox Docs for details about valid values.
The following arguments are supported:
domain
- (Required) The domain to add the record tovalue
- (Required) The value of the record; its usage will depend on thetype
(see below)name
- (Required) The name of the recordttl
- (Integer, Optional) The TTL of the recordtype
- (Required) The type of the recordcomment
- (Optional) The comment of the record
The type of record being created affects the interpretation of the value
argument.
value
is the IPv4 address
value
is the alias name
value
is the IPv6 address
The following attributes are exported:
domain
- The domain of the recordvalue
- The value of the recordname
- The name of the recordtype
- The type of the recordttl
- The TTL of the record