Skip to content

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

v2.6.0

24 Aug 10:05
06dacbd
Compare
Choose a tag to compare

2.6.0 (2023-08-24)

Features

  • add access tag support to the fscloud profile (#512) (06dacbd)

v2.5.0

18 Aug 13:00
v2.5.0
9ea08ab
Compare
Choose a tag to compare

2.5.0 (2023-08-18)

Features

  • added the ability to optionally specify resource group in the block_storage_volumes variable. If not specified, it will use the value of the resource_group_id variable. Previously it was defaulting to the Default resource group. (#507) (9ea08ab)

⚠️ Warning

If you are upgrading from a previous release, and your config was set up to deploy a VSI with additional data volumes using the block_storage_volumes variable, 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 correct group (either the group defined in the required resource_group_id variable, or the group defined in the block_storage_volumes variable itself).

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 variable. For example:

block_storage_volumes = [
    {
      name              = "my-data-vol"
      profile           = "10iops-tier"
      resource_group_id = "65xxxxxxxxxxxxxxxa3fd" # This should be the ID of the Default resource group in your account
  }]

v2.4.4

17 Aug 09:00
v2.4.4
2029707
Compare
Choose a tag to compare

2.4.4 (2023-08-17)

Bug Fixes

  • update code comment around auth policy scoping (#506) (2029707)

v2.4.3

10 Aug 10:05
v2.4.3
f08cc39
Compare
Choose a tag to compare

2.4.3 (2023-08-10)

Bug Fixes

  • updated the auth policy creation so it does not get scoped to a source resource group due to a known issue which can cause VSI creation to fail (#499) (f08cc39)

v2.4.2

09 Aug 15:25
v2.4.2
3286e44
Compare
Choose a tag to compare

2.4.2 (2023-08-09)

Bug Fixes

v2.4.1

25 Jul 11:57
v2.4.1
f22efd1
Compare
Choose a tag to compare

2.4.1 (2023-07-25)

Bug Fixes

  • scope the block storage / HPCS auth policy to the source resource group (#491) (f22efd1)

v2.4.0

21 Jul 09:28
v2.4.0
e41a3de
Compare
Choose a tag to compare

2.4.0 (2023-07-21)

Features

v2.3.2

20 Jul 13:15
v2.3.2
fba832c
Compare
Choose a tag to compare

2.3.2 (2023-07-20)

Bug Fixes

  • updated usage to reference hashicorp instead of github (#475) (fba832c)

v2.3.1

20 Jul 12:06
v2.3.1
6b037d0
Compare
Choose a tag to compare

2.3.1 (2023-07-20)

Bug Fixes

  • fixed bug which was causing kms auth policy to be created even when kms encryption was not enabled (#489) (6b037d0)

v2.3.0

09 Jun 16:57
v2.3.0
8f10810
Compare
Choose a tag to compare

2.3.0 (2023-06-09)

Features ((#467) (8f10810)

  • added new variable kms_encryption_enabled which now needs to be set to true to enable KMS encryption
  • added support to create KMS auth policy along with variable skip_iam_authorization_policy to toggle policy creation on or off
  • added extra validation around the use of KMS variables
  • added a new FSCloud profile terraform submodule (see profiles/fscloud) and an example on how to use it (see examples/fscloud)