Skip to content

Releases: terraform-ibm-modules/terraform-ibm-landing-zone

v4.6.1

03 Sep 09:19
d84e2c0
Compare
Choose a tag to compare

4.6.1 (2023-09-03)

Bug Fixes

v4.6.0

25 Aug 17:34
26f0d20
Compare
Choose a tag to compare

4.6.0 (2023-08-25)

Features

  • Add OCP boot volume KMS encryption support (NOTE: Enabled by default for new clusters, but will not be enabled when upgrading from previous version as encryption can only occur at initial provision time) (#534) (26f0d20)

v4.5.5

24 Aug 10:26
39f1a6f
Compare
Choose a tag to compare

4.5.5 (2023-08-24)

Bug Fixes

  • update required ibm provider version to >= 1.56.1 (#545) (39f1a6f)

v4.5.4

23 Aug 09:35
5e481cc
Compare
Choose a tag to compare

4.5.4 (2023-08-23)

Bug Fixes

  • scope the source of the secrets_manager_to_cos auth policy to the resource group (#516) (5e481cc)

v4.5.3

22 Aug 10:30
a1c265c
Compare
Choose a tag to compare

4.5.3 (2023-08-22)

Bug Fixes

  • deps: update DAs IBM provider version to 1.56.1 (#543)

v4.5.2

21 Aug 17:48
c91b619
Compare
Choose a tag to compare

4.5.2 (2023-08-21)

⚠️ This release will currently not deploy in IBM Schematics due to a known provider bug. Please use v4.5.3 which has the fix for this if running in IBM Schematics.

Bug Fixes

⚠️ Warning

If you are upgrading from a previous release, and you are using the override JSON to provision additional VSI data volumes using the block_storage_volumes value, the terraform plan will tell you that it wants to destroy the volumes that are in the Default resource group and recreate them in the same resource group that the VSIs are provisioned in.

If indeed you wish to continue to keep your data volumes in the Default resource group (to prevent them from being destroyed and recreated on upgrade), you can achieve this by adding the Default resource group ID into the block_storage_volumes array in the vsi part of the override JSON. For example:

{
.....
  "vsi": [
    {
        "boot_volume_encryption_key_name": "PREFIX-vsi-volume-key",
        "image_name": "ibm-redhat-8-6-minimal-amd64-5",
        "machine_type": "cx2-8x16",
        "name": "sbx-workload",
        "resource_group": "PREFIX-workload-rg",
        "block_storage_volumes": [
            {
                "name":           "datavol",
                "profile":        "general-purpose",
                "capacity":       100,
                "encryption_key": "PREFIX-vsi-volume-key",
                "resource_group_id" : "65xxxxxxxxxxxxxxxa3fd"
            }
        ]
....
    }
  ]
....
}

v4.5.1

18 Aug 13:11
d89833d
Compare
Choose a tag to compare

4.5.1 (2023-08-18)

⚠️ This release will currently not deploy in IBM Schematics due to a known provider bug. Please use v4.5.3 which has the fix for this if running in IBM Schematics.

Bug Fixes

  • Migrate DAs to FSCloud profile version 1.4.0 (#524) (d89833d)

v4.5.0

04 Aug 08:06
f4c3e3a
Compare
Choose a tag to compare

4.5.0 (2023-08-04)

⚠️ This release will currently not deploy in IBM Schematics due to a known provider bug. Please use v4.5.3 which has the fix for this if running in IBM Schematics.

Features

  • added functionality to attach access tags to resources in: (#447) (f4c3e3a)
    - Cluster
    - COS
    - VPE
    - VPN
    - KMS
    - Secrets Manager
    - Security Groups
    - VSIs (Bastion, F5, standard VSI)

    In order to utilize the access tags for a resource you will need to add a field to the override.json. For example, below is a snippet on how to add access tags to KMS:
{
  "key_management": {
    "access_tags": ["tag-group:tag-name"]
  }
}

NOTE: creating access tags via Terraform is currently not supported. This module only enables tagging resources with already existing access tags. For more information on creating these access tags, see https://cloud.ibm.com/docs/account?topic=account-access-tags-tutorial.

v4.4.7

31 Jul 12:27
ae8f462
Compare
Choose a tag to compare

4.4.7 (2023-07-31)

Bug Fixes

  • lock OCP DA version into OCP 4.12 and add validation (#511) (ae8f462)

v4.4.6

27 Jul 13:18
c812369
Compare
Choose a tag to compare

4.4.6 (2023-07-27)

Bug Fixes

  • move VSI Quickstart DA code into the patterns directory (#508) (c812369)