Skip to content

Releases: terraform-ibm-modules/terraform-ibm-vpe-gateway

v3.0.0

22 Sep 15:21
v3.0.0
a17b643
Compare
Choose a tag to compare

3.0.0 (2023-09-22)

Bug Fixes

  • remove invalid multi-tenant VPE references (#393) (a17b643)

BREAKING CHANGES

  • Upon apply all existing VPE created in previous version of this module will be deleted and immediately re-created, which may result in a network termination. The IP of the VPE may change as part of this process.

v2.7.2

19 Sep 09:43
v2.7.2
77f786d
Compare
Choose a tag to compare

2.7.2 (2023-09-19)

Bug Fixes

v2.7.1

04 Sep 16:25
3800ae1
Compare
Choose a tag to compare

2.7.1 (2023-09-04)

Bug Fixes

  • fixed issue where the vpe_ips output may not contain any IPs (#372) (3800ae1)

v2.7.0

15 Aug 16:31
v2.7.0
3bf013b
Compare
Choose a tag to compare

2.7.0 (2023-08-15)

Features

  • add functionality to pass a custom name for the vpe gateway (#362) (3bf013b)

v2.6.0

04 Aug 09:39
v2.6.0
f864fbb
Compare
Choose a tag to compare

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        = ""
             },
         ],
    }
    

v2.5.0

03 Aug 11:36
a77b293
Compare
Choose a tag to compare

2.5.0 (2023-08-03)

Features

v2.4.1

26 Jun 15:45
v2.4.1
6447906
Compare
Choose a tag to compare

2.4.1 (2023-06-26)

Bug Fixes

  • updated documentation and examples to use hashicorp registry syntax (#329) (6447906)

v2.4.0

07 Jun 09:08
v2.4.0
c3fdff5
Compare
Choose a tag to compare

2.4.0 (2023-06-07)

Features

v2.3.1

29 May 14:02
v2.3.1
5a80541
Compare
Choose a tag to compare

2.3.1 (2023-05-29)

Bug Fixes

  • Fix an issue preventing from creating VPE when the VPE name is unknown at plan time
  • Fix an issue where reserved IPs were not created when cloud_service_by_crn was used

v2.3.0

22 May 11:49
v2.3.0
e8aa6a1
Compare
Choose a tag to compare

2.3.0 (2023-05-22)

Features

  • update required ibm provider version to >= 1.52.0 (#304) (e8aa6a1)