@@ -20,11 +20,6 @@ func TestRunDefaultExample(t *testing.T) {
2020 options := testhelper .TestOptionsDefault (& testhelper.TestOptions {
2121 Testing : t ,
2222 TerraformDir : defaultExampleTerraformDir ,
23- IgnoreUpdates : testhelper.Exemptions { // Ignore for consistency check
24- List : []string {
25- "module.terraform_devsecops_alm.module.devsecops_cc_toolchain[0].module.pipeline_cc.ibm_cd_tekton_pipeline_trigger.cc_pipeline_timed_trigger[0]" ,
26- },
27- },
2823 TerraformVars : map [string ]interface {}{
2924 "enable_secrets_manager" : false ,
3025 "enable_key_protect" : false ,
@@ -42,11 +37,6 @@ func TestRunAppExample(t *testing.T) {
4237 options := testhelper .TestOptionsDefault (& testhelper.TestOptions {
4338 Testing : t ,
4439 TerraformDir : appExampleDir ,
45- IgnoreUpdates : testhelper.Exemptions { // Ignore for consistency check
46- List : []string {
47- "module.terraform_devsecops_alm.module.devsecops_cc_toolchain[0].module.pipeline_cc.ibm_cd_tekton_pipeline_trigger.cc_pipeline_timed_trigger[0]" ,
48- },
49- },
5040 })
5141
5242 output , err := options .RunTestConsistency ()
@@ -60,11 +50,6 @@ func TestRunKPExample(t *testing.T) {
6050 options := testhelper .TestOptionsDefault (& testhelper.TestOptions {
6151 Testing : t ,
6252 TerraformDir : kpExampleDir ,
63- IgnoreUpdates : testhelper.Exemptions { // Ignore for consistency check
64- List : []string {
65- "module.terraform_devsecops_alm.module.devsecops_cc_toolchain[0].module.pipeline_cc.ibm_cd_tekton_pipeline_trigger.cc_pipeline_timed_trigger[0]" ,
66- },
67- },
6853 })
6954
7055 output , err := options .RunTestConsistency ()
@@ -81,14 +66,11 @@ func TestRunUpgradeExample(t *testing.T) {
8166 options := testhelper .TestOptionsDefault (& testhelper.TestOptions {
8267 Testing : t ,
8368 TerraformDir : defaultExampleTerraformDir ,
84- IgnoreUpdates : testhelper.Exemptions { // Ignore for consistency check
85- List : []string {
86- "module.terraform_devsecops_alm.module.devsecops_cc_toolchain[0].module.pipeline_cc.ibm_cd_tekton_pipeline_trigger.cc_pipeline_timed_trigger[0]" ,
87- },
88- },
89- IgnoreDestroys : testhelper.Exemptions { // Terraform resource created but unused. Needs to be destroyed. Can remove exemption in subsequent release.
69+ IgnoreDestroys : testhelper.Exemptions { // Terraform resource custom cos tool being replaced by dedicated cos tool integration. Can remove in subsequent release
9070 List : []string {
91- "module.terraform_devsecops_alm.random_string.webhook_secret[0]" ,
71+ "module.terraform_devsecops_alm.module.devsecops_ci_toolchain[0].module.integrations.ibm_cd_toolchain_tool_custom.cos_integration[0]" ,
72+ "module.terraform_devsecops_alm.module.devsecops_cd_toolchain[0].module.integrations.ibm_cd_toolchain_tool_custom.cos_integration[0]" ,
73+ "module.terraform_devsecops_alm.module.devsecops_cc_toolchain[0].module.integrations.ibm_cd_toolchain_tool_custom.cos_integration[0]" ,
9274 },
9375 },
9476 })
0 commit comments