Releases: terraform-ibm-modules/terraform-ibm-landing-zone-vpc
Releases · terraform-ibm-modules/terraform-ibm-landing-zone-vpc
v8.8.4
v8.8.3
v8.8.2
v8.8.1
v8.8.0
8.8.0 (2025-10-27)
Features
- Add support to create multiple dns zones and ability to set multiple dns records for each of the dns zones (#1073) (005e9cc)
UPGRADE NOTES: When updating from v8.7.x to this version, if you have a DNS zone and DNS records created, these resources will be recreated. In case, you need to prevent recreation of the DNS zone and DNS records, use the following terraform move commands based on the environment you are running the terraform module.
Terraform CLI:
terraform state mv 'module.<module-name>.ibm_dns_zone.dns_zone[0]' 'module.<module-name>.ibm_dns_zone.dns_zone["<dns-name>"]'
terraform state mv 'module.<module-name>.ibm_dns_permitted_network.dns_permitted_network[0]' 'module.<module-name>.ibm_dns_permitted_network.dns_permitted_network["<dns-name>"]'
terraform state mv 'module.<module-name>.ibm_dns_resource_record.dns_record["0"]' 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-0"]'
terraform state mv 'module.<module-name>.ibm_dns_resource_record.dns_record["1"]' 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-1"]'
terraform state mv 'module.<module-name>.ibm_dns_resource_record.dns_record["2"]' 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-2"]'
terraform state mv 'module.<module-name>.ibm_dns_resource_record.dns_record["3"]' 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-3"]'
...
Schematics:
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_zone.dns_zone[0]' --destination 'module.<module-name>.ibm_dns_zone.dns_zone["<dns-name>"]'
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_permitted_network.dns_permitted_network[0]' --destination 'module.<module-name>.ibm_dns_permitted_network.dns_permitted_network["<dns-name>"]'
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_resource_record.dns_record["0"]' --destination 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-0"]'
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_resource_record.dns_record["1"]' --destination 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-1"]'
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_resource_record.dns_record["2"]' --destination 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-2"]'
ibmcloud schematics workspace state mv --id <WORKSPACE_ID> --source 'module.<module-name>.ibm_dns_resource_record.dns_record["3"]' --destination 'module.<module-name>.ibm_dns_resource_record.dns_record["<dns-name>-3"]'
...