Skip to content

v2.6.0

Compare
Choose a tag to compare
@terraform-ibm-modules-ops terraform-ibm-modules-ops released this 04 Aug 09:39
· 186 commits to main since this release
v2.6.0
f864fbb

2.6.0 (2023-08-04)

Features

  • update to the data structure of the vpe_ips output. Added the gateway name as the key for each list of objects. This will help in differentiating the IPs for each gateways.(#354) (f864fbb).
    For example:
    • In previous versions, the output was in this format:
    [
       [
           {
               address       = "10.10.10.5"
               id            = "xxxx-xxxxx-xxxxxx-xxxxx"
               name          = "sandbank-disports-sleeve-dugout"
               resource_type = "subnet_reserved_ip"
               subnet        = ""
            },
           {
               address       = "10.20.10.5"
               id            = "xxxx-xxxxx-xxxxxx-xxxxx"
               name          = "bannister-food-quarrel-concept"
               resource_type = "subnet_reserved_ip"
               subnet        = ""
            },
        ],
       [
           {
               address       = "10.10.10.4"
               id            = "xxxx-xxxxx-xxxxxx-xxxxx"
               name          = "haunt-tank-recital-princess"
               resource_type = "subnet_reserved_ip"
               subnet        = ""
            },
           {
               address       = "10.20.10.6"
               id            = "xxxx-xxxxx-xxxxxx-xxxxx"
               name          = "vigorous-tarantula-cash-reverse"
               resource_type = "subnet_reserved_ip"
               subnet        = ""
            },
        ],
    ]
    
    • In v2.6.0, the output is now in the following format:
    {
        test-vpc-instance-account-management      = [
            {
                address       = "10.30.10.5"
                id            = "xxxx-xxxxx-xxxxxx-xxxxx"
                name          = "handwoven-poem-retention-mantis"
                resource_type = "subnet_reserved_ip"
                subnet        = ""
             },
            {
                address       = "10.10.10.12"
                id            = "xxxx-xxxxx-xxxxxx-xxxxx"
                name          = "smog-dastardly-bountiful-calf"
                resource_type = "subnet_reserved_ip"
                subnet        = ""
             },
         ]
        test-vpc-instance-billing                 = [
            {
                address       = "10.10.10.16"
                id            = "xxxx-xxxxx-xxxxxx-xxxxx"
                name          = "daffy-outfield-scrambled-showy"
                resource_type = "subnet_reserved_ip"
                subnet        = ""
             },
            {
                address       = "10.20.10.22"
                id            = "xxxx-xxxxx-xxxxxx-xxxxx"
                name          = "frogman-deflector-foe-deem"
                resource_type = "subnet_reserved_ip"
                subnet        = ""
             },
         ],
    }