1. Packages
  2. Infoblox Provider
  3. API Docs
  4. AaaaRecord
Viewing docs for infoblox 2.12.0
published on Tuesday, Mar 10, 2026 by infobloxopen
infoblox logo
Viewing docs for infoblox 2.12.0
published on Tuesday, Mar 10, 2026 by infobloxopen

    # AAAA-record Resource

    The infoblox.AaaaRecord resource associates a domain name with an IPv6 address.

    The following list describes the parameters you can define in the resource block of the record:

    • fqdn: required, specifies the fully qualified domain name for which you want to assign the IP address to. Example: host43.zone12.org
    • network_view: optional, specifies the network view to use when allocating an IP address from a network dynamically. If a value is not specified, the name default is used for the network view. For static allocation, do not use this field. Example: networkview1
    • dns_view: optional, specifies the DNS view in which the zone exists. If a value is not specified, the name default is used for DNS view. Example: dns_view_1
    • ttl: optional, specifies the “time to live” value for the record. There is no default value for this parameter. If a value is not specified, then in NIOS, the value is inherited from the parent zone of the DNS record for this resource. A TTL value of 0 (zero) means caching should be disabled for this record. Example: 600
    • comment: optional, describes the record. Example: static record #1
    • ext_attrs: koptional, a set of NIOS extensible attributes that are attached to the record. Example: jsonencode({})
    • ipv6_addr: required only for static allocation, specifies the IPv6 address to associate with the AAAA-record. Example: 2001:db8::ff00:42:8329.
      • For allocating a static IP address, specify a valid IP address.
      • For allocating a dynamic IP address, configure the cidr field instead of ipv6_addr . Optionally, specify a network_view if you do not want to allocate it in the network view default.
    • cidr: required only for dynamic allocation, specifies the network from which to allocate an IP address when the ipv6_addr field is empty. The address is in CIDR format. For static allocation, use ipv6_addr instead of cidr. Example: 2001::/64.
    • filter_params: Required only if ipv6_addr and cidr are not set, specifies the extensible attributes of the parent network that must be used as filters to retrieve the next available IP address for creating the record object. Example: jsonencode({"*Site": "Turkey"}).

    !> To use upper case letters in fqdn, infoblox recommends that you use lower() function. Example: lower("testEXAMPLE.zone1.com")

    Create AaaaRecord Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AaaaRecord(name: string, args: AaaaRecordArgs, opts?: CustomResourceOptions);
    @overload
    def AaaaRecord(resource_name: str,
                   args: AaaaRecordArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def AaaaRecord(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   fqdn: Optional[str] = None,
                   aaaa_record_id: Optional[str] = None,
                   cidr: Optional[str] = None,
                   comment: Optional[str] = None,
                   dns_view: Optional[str] = None,
                   ext_attrs: Optional[str] = None,
                   filter_params: Optional[str] = None,
                   ipv6_addr: Optional[str] = None,
                   network_view: Optional[str] = None,
                   ttl: Optional[float] = None)
    func NewAaaaRecord(ctx *Context, name string, args AaaaRecordArgs, opts ...ResourceOption) (*AaaaRecord, error)
    public AaaaRecord(string name, AaaaRecordArgs args, CustomResourceOptions? opts = null)
    public AaaaRecord(String name, AaaaRecordArgs args)
    public AaaaRecord(String name, AaaaRecordArgs args, CustomResourceOptions options)
    
    type: infoblox:AaaaRecord
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AaaaRecordArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var aaaaRecordResource = new Infoblox.AaaaRecord("aaaaRecordResource", new()
    {
        Fqdn = "string",
        AaaaRecordId = "string",
        Cidr = "string",
        Comment = "string",
        DnsView = "string",
        ExtAttrs = "string",
        FilterParams = "string",
        Ipv6Addr = "string",
        NetworkView = "string",
        Ttl = 0,
    });
    
    example, err := infoblox.NewAaaaRecord(ctx, "aaaaRecordResource", &infoblox.AaaaRecordArgs{
    	Fqdn:         pulumi.String("string"),
    	AaaaRecordId: pulumi.String("string"),
    	Cidr:         pulumi.String("string"),
    	Comment:      pulumi.String("string"),
    	DnsView:      pulumi.String("string"),
    	ExtAttrs:     pulumi.String("string"),
    	FilterParams: pulumi.String("string"),
    	Ipv6Addr:     pulumi.String("string"),
    	NetworkView:  pulumi.String("string"),
    	Ttl:          pulumi.Float64(0),
    })
    
    var aaaaRecordResource = new AaaaRecord("aaaaRecordResource", AaaaRecordArgs.builder()
        .fqdn("string")
        .aaaaRecordId("string")
        .cidr("string")
        .comment("string")
        .dnsView("string")
        .extAttrs("string")
        .filterParams("string")
        .ipv6Addr("string")
        .networkView("string")
        .ttl(0.0)
        .build());
    
    aaaa_record_resource = infoblox.AaaaRecord("aaaaRecordResource",
        fqdn="string",
        aaaa_record_id="string",
        cidr="string",
        comment="string",
        dns_view="string",
        ext_attrs="string",
        filter_params="string",
        ipv6_addr="string",
        network_view="string",
        ttl=0)
    
    const aaaaRecordResource = new infoblox.AaaaRecord("aaaaRecordResource", {
        fqdn: "string",
        aaaaRecordId: "string",
        cidr: "string",
        comment: "string",
        dnsView: "string",
        extAttrs: "string",
        filterParams: "string",
        ipv6Addr: "string",
        networkView: "string",
        ttl: 0,
    });
    
    type: infoblox:AaaaRecord
    properties:
        aaaaRecordId: string
        cidr: string
        comment: string
        dnsView: string
        extAttrs: string
        filterParams: string
        fqdn: string
        ipv6Addr: string
        networkView: string
        ttl: 0
    

    AaaaRecord Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AaaaRecord resource accepts the following input properties:

    Fqdn string
    FQDN for the AAAA-record.
    AaaaRecordId string
    Cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    Comment string
    Description of the AAAA-record.
    DnsView string
    DNS view which the zone does exist within.
    ExtAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    FilterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    Ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    NetworkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    Ttl double
    TTL value for the AAAA-record.
    Fqdn string
    FQDN for the AAAA-record.
    AaaaRecordId string
    Cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    Comment string
    Description of the AAAA-record.
    DnsView string
    DNS view which the zone does exist within.
    ExtAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    FilterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    Ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    NetworkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    Ttl float64
    TTL value for the AAAA-record.
    fqdn String
    FQDN for the AAAA-record.
    aaaaRecordId String
    cidr String
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment String
    Description of the AAAA-record.
    dnsView String
    DNS view which the zone does exist within.
    extAttrs String
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams String
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    ipv6Addr String
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView String
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ttl Double
    TTL value for the AAAA-record.
    fqdn string
    FQDN for the AAAA-record.
    aaaaRecordId string
    cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment string
    Description of the AAAA-record.
    dnsView string
    DNS view which the zone does exist within.
    extAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ttl number
    TTL value for the AAAA-record.
    fqdn str
    FQDN for the AAAA-record.
    aaaa_record_id str
    cidr str
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment str
    Description of the AAAA-record.
    dns_view str
    DNS view which the zone does exist within.
    ext_attrs str
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filter_params str
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    ipv6_addr str
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    network_view str
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ttl float
    TTL value for the AAAA-record.
    fqdn String
    FQDN for the AAAA-record.
    aaaaRecordId String
    cidr String
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment String
    Description of the AAAA-record.
    dnsView String
    DNS view which the zone does exist within.
    extAttrs String
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams String
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    ipv6Addr String
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView String
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ttl Number
    TTL value for the AAAA-record.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AaaaRecord resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    InternalId string
    Ref string
    NIOS object's reference, not to be set by a user.
    Id string
    The provider-assigned unique ID for this managed resource.
    InternalId string
    Ref string
    NIOS object's reference, not to be set by a user.
    id String
    The provider-assigned unique ID for this managed resource.
    internalId String
    ref String
    NIOS object's reference, not to be set by a user.
    id string
    The provider-assigned unique ID for this managed resource.
    internalId string
    ref string
    NIOS object's reference, not to be set by a user.
    id str
    The provider-assigned unique ID for this managed resource.
    internal_id str
    ref str
    NIOS object's reference, not to be set by a user.
    id String
    The provider-assigned unique ID for this managed resource.
    internalId String
    ref String
    NIOS object's reference, not to be set by a user.

    Look up Existing AaaaRecord Resource

    Get an existing AaaaRecord resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AaaaRecordState, opts?: CustomResourceOptions): AaaaRecord
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            aaaa_record_id: Optional[str] = None,
            cidr: Optional[str] = None,
            comment: Optional[str] = None,
            dns_view: Optional[str] = None,
            ext_attrs: Optional[str] = None,
            filter_params: Optional[str] = None,
            fqdn: Optional[str] = None,
            internal_id: Optional[str] = None,
            ipv6_addr: Optional[str] = None,
            network_view: Optional[str] = None,
            ref: Optional[str] = None,
            ttl: Optional[float] = None) -> AaaaRecord
    func GetAaaaRecord(ctx *Context, name string, id IDInput, state *AaaaRecordState, opts ...ResourceOption) (*AaaaRecord, error)
    public static AaaaRecord Get(string name, Input<string> id, AaaaRecordState? state, CustomResourceOptions? opts = null)
    public static AaaaRecord get(String name, Output<String> id, AaaaRecordState state, CustomResourceOptions options)
    resources:  _:    type: infoblox:AaaaRecord    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AaaaRecordId string
    Cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    Comment string
    Description of the AAAA-record.
    DnsView string
    DNS view which the zone does exist within.
    ExtAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    FilterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    Fqdn string
    FQDN for the AAAA-record.
    InternalId string
    Ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    NetworkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    Ref string
    NIOS object's reference, not to be set by a user.
    Ttl double
    TTL value for the AAAA-record.
    AaaaRecordId string
    Cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    Comment string
    Description of the AAAA-record.
    DnsView string
    DNS view which the zone does exist within.
    ExtAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    FilterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    Fqdn string
    FQDN for the AAAA-record.
    InternalId string
    Ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    NetworkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    Ref string
    NIOS object's reference, not to be set by a user.
    Ttl float64
    TTL value for the AAAA-record.
    aaaaRecordId String
    cidr String
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment String
    Description of the AAAA-record.
    dnsView String
    DNS view which the zone does exist within.
    extAttrs String
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams String
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    fqdn String
    FQDN for the AAAA-record.
    internalId String
    ipv6Addr String
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView String
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ref String
    NIOS object's reference, not to be set by a user.
    ttl Double
    TTL value for the AAAA-record.
    aaaaRecordId string
    cidr string
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment string
    Description of the AAAA-record.
    dnsView string
    DNS view which the zone does exist within.
    extAttrs string
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams string
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    fqdn string
    FQDN for the AAAA-record.
    internalId string
    ipv6Addr string
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView string
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ref string
    NIOS object's reference, not to be set by a user.
    ttl number
    TTL value for the AAAA-record.
    aaaa_record_id str
    cidr str
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment str
    Description of the AAAA-record.
    dns_view str
    DNS view which the zone does exist within.
    ext_attrs str
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filter_params str
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    fqdn str
    FQDN for the AAAA-record.
    internal_id str
    ipv6_addr str
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    network_view str
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ref str
    NIOS object's reference, not to be set by a user.
    ttl float
    TTL value for the AAAA-record.
    aaaaRecordId String
    cidr String
    Network to allocate an IP address from, when the 'ipv6_addr' field is empty (dynamic allocation). The address is in CIDR format. For static allocation, leave this field empty.
    comment String
    Description of the AAAA-record.
    dnsView String
    DNS view which the zone does exist within.
    extAttrs String
    Extensible attributes of the AAAA-record to be added/updated, as a map in JSON format
    filterParams String
    The parent network block's extensible attributes (dynamic allocation). For static allocation, leave this field empty.
    fqdn String
    FQDN for the AAAA-record.
    internalId String
    ipv6Addr String
    IP address to associate with the AAAA-record. For static allocation, set the field with a valid IP address. For dynamic allocation, leave this field empty and set 'cidr' and 'network_view' fieldsor 'filter_params' and optional 'network_view' fields.
    networkView String
    Network view to use when allocating an IP address from a network dynamically. For static allocation, leave this field empty.
    ref String
    NIOS object's reference, not to be set by a user.
    ttl Number
    TTL value for the AAAA-record.

    Package Details

    Repository
    infoblox infobloxopen/terraform-provider-infoblox
    License
    Notes
    This Pulumi package is based on the infoblox Terraform Provider.
    infoblox logo
    Viewing docs for infoblox 2.12.0
    published on Tuesday, Mar 10, 2026 by infobloxopen
      Try Pulumi Cloud free. Your team will thank you.