Blog

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 %}

The Cloud ROI Newsletter

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

Related Blogs

 
thumbnail
The Case for Convergence: Why Build, Manage, and Optimize Must Work as One

When we talk about cloud, we often get stuck on the technology. But the real challenge isn’t the tech itself—it’s…

 
thumbnail
Cloud Management’s New Reality: Reading the 2025 Market Map 

Quick take: The cloud management market is in flux. Platforms are converging, scope is expanding beyond core infrastructure, automation is…

 
thumbnail
Hot-Patching Pods in Kubernetes 1.33: What Breaks, What Works, and How We’re Making It Usable

When Kubernetes 1.33 dropped, the headline that jumped out at me was in-place pod resizing.  “Finally,” I thought, “we can…