Skip to content

Commit 0c1db21

Browse files
committed
route_table: Review items
1 parent 74aa9cf commit 0c1db21

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

internal/service/ec2/vpc_route_table.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,6 @@ func routeTableAddRoute(ctx context.Context, conn *ec2.EC2, routeTableID string,
507507
errCodeInvalidTransitGatewayIDNotFound,
508508
)
509509

510-
// local routes can be adopted
511510
if err != nil {
512511
return fmt.Errorf("creating Route in Route Table (%s) with destination (%s): %w", routeTableID, destination, err)
513512
}

website/docs/r/route_table.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ resource "aws_vpc" "test" {
104104
cidr_block = "10.1.0.0/16"
105105
106106
tags = {
107-
Name = "lihaspoj"
107+
Name = "leibovitz"
108108
}
109109
}
110110
@@ -117,7 +117,7 @@ resource "aws_route_table" "test" {
117117
}
118118
119119
tags = {
120-
Name = "lihaspoj"
120+
Name = "leibovitz"
121121
}
122122
}
123123
@@ -126,15 +126,15 @@ resource "aws_subnet" "test" {
126126
vpc_id = aws_vpc.test.id
127127
128128
tags = {
129-
Name = "lihaspoj"
129+
Name = "leibovitz"
130130
}
131131
}
132132
133133
resource "aws_network_interface" "test" {
134134
subnet_id = aws_subnet.test.id
135135
136136
tags = {
137-
Name = "lihaspoj"
137+
Name = "leibovitz"
138138
}
139139
}
140140
```

0 commit comments

Comments
 (0)