Blogs

How to configure SovLabs Infoblox plugin to add alias to an Infoblox Host or A record

{% raw %}

To add one or more aliases to an Infoblox DNS record,  configure your Infoblox endpoint to enter them.

 

When you configure your Infoblox Endpoint, add the aliases to the JSON in the template type you want the alias to apply to.  Typically, this would be either the host record or the A record.  In the example below, I have hard-coded “bc1” and “bc2” as aliases.  You will probably want to use a vRA Property (referenced by putting the property name inside double curly braces {{ }})

 

{
    “name”: “{{paramHostname}}”,
    “view”: “{{defaultDnsView}}”,
    “comment”: “Created by vRA SovLabs Extensibility Module”,
    “ipv4addrs”: [{
        “ipv4addr”: “{{ paramIpaddress }}”
    }],
    “aliases”: [“bc1″,”bc2”]
}

 

with templated vRA properties:

 

{
    “name”: “{{paramHostname}}”,
    “view”: “{{defaultDnsView}}”,
    “comment”: “Created by vRA SovLabs Extensibility Module”,
    “ipv4addrs”: [{
        “ipv4addr”: “{{ paramIpaddress }}”
    }],
    “aliases”: [{{myAliasProperty1}}, {{myAliasProperty2}}]
}

 

*Note:  Always use a json format checker like jsonlint to validate your JSON before entering it and saving it into your SovLabs configurations.

 

{% endraw %}

Sign up for our newsletter

Exclusive insights and strategies for cloud pros. Delivered straight to your inbox.


AUTHOR
Patrick Campbell
  Learn more

Related Blogs

 
thumbnail
VMware Aria alternative for VCF 9: Aria vs CMP – Part 2

Part 2 of 3. Read Part 1: why companies are making the move | Read Part 3: testing VMware alternatives…

 
thumbnail
Cast AI Alternative: ML Pod Rightsizing Without Replacing Karpenter

Cast AI has earned its place on Kubernetes cost optimization shortlists. Its node engine autonomously selects instance types, orchestrates Spot…

 
thumbnail
Kubernetes Resource Optimization Solutions: Top Tools Compared

At a high level, Kubernetes resource optimization tools address two related general challenges.  The first challenge is achieving workload efficiency.…