@@ -72,6 +72,12 @@ func TestInstancesInSchematics(t *testing.T) {
7272 Tags : []string {"test-schematic" },
7373 DeleteWorkspaceOnFail : false ,
7474 WaitJobCompleteMinutes : 60 ,
75+ IgnoreUpdates : testhelper.Exemptions {
76+ List : []string {
77+ // Need to ignore this since primary_metadata_region might be updating in the dev account due to tests using different regions
78+ "module.observability_instance.module.metric_routing.ibm_metrics_router_settings.metrics_router_settings[0]" ,
79+ },
80+ },
7581 })
7682
7783 options .TerraformVars = []testschematic.TestSchematicTerraformVar {
@@ -103,6 +109,12 @@ func TestRunUpgradeSolutionInstances(t *testing.T) {
103109 TerraformDir : solutionInstanceDADir ,
104110 Region : region ,
105111 Prefix : "obs-ins-upg" ,
112+ IgnoreUpdates : testhelper.Exemptions {
113+ List : []string {
114+ // Need to ignore this since primary_metadata_region might be updating in the dev account due to tests using different regions
115+ "module.observability_instance.module.metric_routing.ibm_metrics_router_settings.metrics_router_settings[0]" ,
116+ },
117+ },
106118 })
107119
108120 options .TerraformVars = map [string ]interface {}{
@@ -290,6 +302,12 @@ func TestRunExistingResourcesInstancesSchematics(t *testing.T) {
290302 DeleteWorkspaceOnFail : false ,
291303 WaitJobCompleteMinutes : 60 ,
292304 Region : region ,
305+ IgnoreUpdates : testhelper.Exemptions {
306+ List : []string {
307+ // Need to ignore this since primary_metadata_region might be updating in the dev account due to tests using different regions
308+ "module.observability_instance.module.metric_routing.ibm_metrics_router_settings.metrics_router_settings[0]" ,
309+ },
310+ },
293311 })
294312
295313 options .TerraformVars = []testschematic.TestSchematicTerraformVar {
@@ -331,6 +349,12 @@ func TestRunExistingResourcesInstancesSchematics(t *testing.T) {
331349 DeleteWorkspaceOnFail : false ,
332350 WaitJobCompleteMinutes : 60 ,
333351 Region : region ,
352+ IgnoreUpdates : testhelper.Exemptions {
353+ List : []string {
354+ // Need to ignore this since primary_metadata_region might be updating in the dev account due to tests using different regions
355+ "module.observability_instance.module.metric_routing.ibm_metrics_router_settings.metrics_router_settings[0]" ,
356+ },
357+ },
334358 })
335359
336360 options2 .TerraformVars = []testschematic.TestSchematicTerraformVar {
0 commit comments