Skip to content

Commit 68e307c

Browse files
committed
init commit
1 parent 1c8273a commit 68e307c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##############################################################################
44

55
module "roks_landing_zone" {
6-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/roks-quickstart?ref=v6.6.0"
6+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/roks-quickstart?ref=v6.6.1"
77
ibmcloud_api_key = var.ibmcloud_api_key
88
prefix = var.prefix
99
region = var.region

tests/pr_test.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,23 @@ func setupOptions(t *testing.T, prefix string, dir string) *testhelper.TestOptio
1616
Testing: t,
1717
TerraformDir: dir,
1818
Prefix: prefix,
19+
IgnoreAdds: testhelper.Exemptions{ // Ignore for consistency check
20+
List: []string{
21+
"module.cloudpak_data.null_resource.oc_login",
22+
},
23+
},
1924
IgnoreUpdates: testhelper.Exemptions{ // Ignore for consistency check
2025
List: []string{
2126
"module.cloudpak_data.module.cloud_pak_deployer.kubernetes_namespace_v1.cloud_pak_deployer_namespace",
2227
"module.cloudpak_data.null_resource.oc_login",
2328
"module.cloudpak_data.module.cloud_pak_deployer.kubernetes_service_account_v1.cloud_pak_deployer_service_account",
2429
},
2530
},
31+
IgnoreDestroys: testhelper.Exemptions{ // Ignore for consistency check
32+
List: []string{
33+
"module.cloudpak_data.null_resource.oc_login",
34+
},
35+
},
2636
})
2737
return options
2838
}

0 commit comments

Comments
 (0)