Skip to content

Commit 373c427

Browse files
update dependency variable
1 parent 976aeb0 commit 373c427

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

tests/pr_test.go

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,11 @@ func TestSecretManagerDefaultConfiguration(t *testing.T) {
199199
t.Parallel()
200200

201201
options := testaddons.TestAddonsOptionsDefault(&testaddons.TestAddonOptions{
202-
Testing: t,
203-
Prefix: "pbsme",
204-
ResourceGroup: resourceGroup,
205-
QuietMode: false, // Suppress logs except on failure
202+
Testing: t,
203+
Prefix: "pbsme",
204+
ResourceGroup: resourceGroup,
205+
OverrideInputMappings: core.BoolPtr(true),
206+
QuietMode: false, // Suppress logs except on failure
206207
})
207208

208209
options.AddonConfig = cloudinfo.NewAddonConfigTerraform(
@@ -230,6 +231,21 @@ func TestSecretManagerDefaultConfiguration(t *testing.T) {
230231
},
231232
Enabled: core.BoolPtr(true),
232233
},
234+
// // Disable target / route creation to prevent hitting quota in account
235+
{
236+
OfferingName: "deploy-arch-ibm-cloud-monitoring",
237+
OfferingFlavor: "fully-configurable",
238+
Inputs: map[string]interface{}{
239+
"enable_metrics_routing_to_cloud_monitoring": false,
240+
},
241+
},
242+
{
243+
OfferingName: "deploy-arch-ibm-activity-tracker",
244+
OfferingFlavor: "fully-configurable",
245+
Inputs: map[string]interface{}{
246+
"enable_activity_tracker_event_routing_to_cloud_logs": false,
247+
},
248+
},
233249
}
234250

235251
err := options.RunAddonTest()

0 commit comments

Comments
 (0)