Skip to content

Commit 5732987

Browse files
committed
chose: fix indentation
1 parent f6713bd commit 5732987

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ it is mandatory to run in the "us-east-1" region. Check the example.
6767
- resource.aws_cloudwatch_log_resource_policy.main (cloudwatch.tf#13)
6868
- resource.aws_wafv2_web_acl.main (main.tf#7)
6969
- resource.aws_wafv2_web_acl_logging_configuration.main (cloudwatch.tf#8)
70-
- data source.aws_caller_identity.current (cloudwatch.tf#48)
70+
- data source.aws_caller_identity.current (cloudwatch.tf#59)
7171
- data source.aws_iam_policy_document.main (cloudwatch.tf#18)
72-
- data source.aws_region.current (cloudwatch.tf#46)
72+
- data source.aws_region.current (cloudwatch.tf#57)
7373

7474
# Examples
7575
### Complete

cloudwatch.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ data "aws_iam_policy_document" "main" {
3737
]
3838

3939
condition {
40-
test = "ArnLike"
40+
test = "ArnLike"
4141
values = [
4242
"arn:aws:logs:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:*"
4343
]
4444
variable = "aws:SourceArn"
4545
}
4646

4747
condition {
48-
test = "StringEquals"
48+
test = "StringEquals"
4949
values = [
5050
tostring(data.aws_caller_identity.current.account_id)
5151
]

0 commit comments

Comments
 (0)