Skip to content

Commit 878d4ba

Browse files
SSPROD-62698 - fix deprecated attribute name
1 parent 1d49242 commit 878d4ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/integrations/cloud-logs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This module relies on a secondary AWS provider, with alias `sns`. We require thi
3131
```
3232
provider aws {
3333
alias = "sns"
34-
region = data.aws_region.current.id
34+
region = data.aws_region.current.name
3535
}
3636
```
3737

modules/integrations/cloud-logs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ resource "aws_cloudformation_stack_set_instance" "cloudlogs_s3_access_bucket" {
279279
accounts = [local.bucket_account_id]
280280
}
281281

282-
stack_set_instance_region = data.aws_region.current.id
282+
stack_set_instance_region = data.aws_region.current.name
283283

284284
timeouts {
285285
create = var.timeout

0 commit comments

Comments
 (0)