f5devcentral / f5-automation-config-converter

Convert BIG-IP configs to AS3 and DO declarations
https://clouddocs.f5.com/products/extensions/f5-automation-config-converter/latest/
Apache License 2.0
35 stars 13 forks source link

new features, include pool server names in pool class when converting to AS3 #106

Open sbarakett opened 3 months ago

sbarakett commented 3 months ago

When running function convert to AS3 with ACC, I would love to see these two new features.

The conversion ignores pool members names, and just gets the IP addresses, so when pushing to a new F5, you loose the node names.

what you get from pool: "members": [ { "addressDiscovery": "static", "servicePort": 443, "serverAddresses": [ "x.x.x.x", "x.x.x.x" ], "shareNodes": true } ],

what I would like to see:

        "members": [
            {
            "addressDiscovery": "static",
            "servicePort": 443,
            "servers":[
                { 
                    "name": "nodename",
                    "address": "x.x.x.x" 
                },
                { 
                    "name": "nodename"",
                    "address": "x.x.x.x" 
                }
                ]
            }
        ],

Thanks for any attention you put towards this.

sbarakett commented 1 week ago

same as #91