Skip to content

Commit dd338c7

Browse files
fix: removed "global" from the Atracker route location in the DA as its superseded by "*". NOTE: Upgrading to this version in the DA will see an expected update in place on the ibm_atracker_route resource (#122)
1 parent 6897e51 commit dd338c7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module "activity_tracker" {
9797
# AT Event routing route
9898
activity_tracker_routes = [
9999
{
100-
locations = ["*", "global"]
100+
locations = ["*"]
101101
target_ids = local.target_ids
102102
route_name = "at-route"
103103
}

examples/advanced/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ module "activity_tracker" {
178178
# Activity Tracker route
179179
activity_tracker_routes = [
180180
{
181-
locations = ["*", "global"]
181+
locations = ["*"]
182182
target_ids = local.target_ids
183183
route_name = "${var.prefix}-route"
184184
}

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module "activity_tracker" {
5555
# Activity Tracker route to COS bucket
5656
activity_tracker_routes = [
5757
{
58-
locations = ["*", "global"]
58+
locations = ["*"]
5959
target_ids = [module.activity_tracker.activity_tracker_targets[local.bucket_target_name].id]
6060
route_name = "${var.prefix}-cos-route"
6161
}

solutions/fully-configurable/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ locals {
6161

6262
activity_tracker_cos_route = var.enable_activity_tracker_event_routing_to_cos_bucket ? [{
6363
route_name = local.activity_tracker_cos_route_name
64-
locations = ["*", "global"]
64+
locations = ["*"]
6565
target_ids = [module.activity_tracker.activity_tracker_targets[local.cos_target_name].id]
6666
}] : []
6767

6868
activity_tracker_cloud_logs_route = var.enable_activity_tracker_event_routing_to_cloud_logs && var.existing_cloud_logs_instance_crn != null ? [{
6969
route_name = local.activity_tracker_cloud_logs_route_name
70-
locations = ["*", "global"]
70+
locations = ["*"]
7171
target_ids = [module.activity_tracker.activity_tracker_targets[local.cloud_logs_target_name].id]
7272
}] : []
7373

0 commit comments

Comments
 (0)