Skip to content

Commit 4d838c7

Browse files
authored
chore: use cos direct endpoint (#466)
1 parent d58829d commit 4d838c7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

examples/fscloud/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ module "event_notification" {
129129
cos_bucket_name = module.cos.buckets[local.bucket_name].bucket_name
130130
cos_instance_id = module.cos.cos_instance_crn
131131
skip_en_cos_auth_policy = false
132-
cos_endpoint = "https://${module.cos.buckets[local.bucket_name].s3_endpoint_private}"
132+
cos_endpoint = "https://${module.cos.buckets[local.bucket_name].s3_endpoint_direct}"
133133
cbr_rules = [
134134
{
135135
description = "${var.prefix}-event notification access from vpc and schematics"

tests/pr_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-res
3535
// Current supported EN region
3636
var validRegions = []string{
3737
"us-south",
38-
// Error occurring specific to eu-de/eu-de regions, see https://github.com/IBM-Cloud/terraform-provider-ibm/issues/6221
39-
// "eu-de",
40-
// "eu-es",
38+
"eu-de",
39+
"eu-es",
4140
"eu-gb",
4241
"au-syd",
4342
}

0 commit comments

Comments
 (0)