diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ce50069..7fed1809 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file. - Fixed an issue causing images imported into an existing Power VS Workspace to have incorrect Terraform references - Fixed an issue causing Power VS Images to not reload when changing the name of an existing Power VS Workspace - Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled +- Fixed an issue incorrectly causing valid Power VS images to show as invalid on validation ## 1.15.4 diff --git a/client/src/Craig.js b/client/src/Craig.js index 4185ed3c..176d81a9 100644 --- a/client/src/Craig.js +++ b/client/src/Craig.js @@ -500,7 +500,8 @@ class Craig extends React.Component { "imageID", image.imageID || image.pi_image_id ) && - !workspace.use_data + !workspace.use_data && + workspace.zone === zone ) { invalidItems.power_images.push({ workspace: workspace.name, @@ -512,7 +513,8 @@ class Craig extends React.Component { workspace.imageNames.forEach((name) => { if ( !splatContains(foundImages, "name", name) && - !workspace.use_data + !workspace.use_data && + workspace.zone === zone ) { invalidItems.power_images.push({ workspace: workspace.name, diff --git a/client/src/lib/docs/release-notes.json b/client/src/lib/docs/release-notes.json index bd59e4fb..b1a502e2 100644 --- a/client/src/lib/docs/release-notes.json +++ b/client/src/lib/docs/release-notes.json @@ -5,7 +5,8 @@ "fixes": [ "Fixed an issue causing images imported into an existing Power VS Workspace to have incorrect Terraform references", "Fixed an issue causing Power VS Images to not reload when changing the name of an existing Power VS Workspace", - "Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled" + "Fixed an issue causing the LogDNA provider to not be added to `versions.tf` when the instance is enabled", + "Fixed an issue incorrectly causing valid Power VS images to show as invalid on validation" ], "upgrade_notes": [] },