Skip to content

Commit 6e56669

Browse files
committed
lint update
1 parent 6f4d29a commit 6e56669

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

s3-endpoint.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ resource "aws_vpc_endpoint" "s3" {
1313
POLICY
1414

1515
lifecycle {
16-
ignore_changes = [ policy ]
16+
ignore_changes = [policy]
1717
}
18-
18+
1919
tags = merge(
2020
var.tags,
2121
{
@@ -24,6 +24,6 @@ resource "aws_vpc_endpoint" "s3" {
2424
},
2525
)
2626

27-
depends_on = [ aws_vpc.default ]
27+
depends_on = [aws_vpc.default]
2828

2929
}

subnet-transit.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ resource "aws_route_table_association" "transit" {
5757

5858
resource "aws_vpc_endpoint_route_table_association" "transit" {
5959
count = var.transit_subnet ? 1 : 0
60-
route_table_id = aws_route_table.transit[0].id
60+
route_table_id = aws_route_table.transit[0].id
6161
vpc_endpoint_id = aws_vpc_endpoint.s3.id
6262
}

0 commit comments

Comments
 (0)