Skip to content

Commit f95cdf6

Browse files
committed
fix: Run pre-commit to fix lint checks
1 parent bcd5126 commit f95cdf6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ module "api_gateway" {
4646
payload_format_version = "2.0"
4747
timeout_milliseconds = 12000
4848
}
49-
49+
5050
"GET /some-route-with-authorizer" = {
5151
integration_type = "HTTP_PROXY"
5252
integration_uri = "some url"
@@ -90,12 +90,12 @@ module "api_gateway" {
9090
create_default_stage_api_mapping = false # to control creation of "$default" stage and API mapping
9191
create_routes_and_integrations = false # to control creation of routes and integrations
9292
create_vpc_link = false # to control creation of VPC link
93-
93+
9494
integrations= {
9595
"GET /" = {
9696
create_route = false # to control creation of route
9797
}
98-
}
98+
}
9999
100100
# ... omitted
101101
}

wrappers/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ module "wrapper" {
3535
route_selection_expression = try(each.value.route_selection_expression, var.defaults.route_selection_expression, "$request.method $request.path")
3636
tags = try(each.value.tags, var.defaults.tags, {})
3737
target = try(each.value.target, var.defaults.target, null)
38-
vpc_link_tags = try(each.value.vpc_link_tags, var.defaults.vpc_link_tags, {})
3938
vpc_links = try(each.value.vpc_links, var.defaults.vpc_links, {})
39+
vpc_link_tags = try(each.value.vpc_link_tags, var.defaults.vpc_link_tags, {})
4040
}

0 commit comments

Comments
 (0)