File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ module "api_gateway" {
46
46
payload_format_version = "2.0"
47
47
timeout_milliseconds = 12000
48
48
}
49
-
49
+
50
50
"GET /some-route-with-authorizer" = {
51
51
integration_type = "HTTP_PROXY"
52
52
integration_uri = "some url"
@@ -90,12 +90,12 @@ module "api_gateway" {
90
90
create_default_stage_api_mapping = false # to control creation of "$default" stage and API mapping
91
91
create_routes_and_integrations = false # to control creation of routes and integrations
92
92
create_vpc_link = false # to control creation of VPC link
93
-
93
+
94
94
integrations= {
95
95
"GET /" = {
96
96
create_route = false # to control creation of route
97
97
}
98
- }
98
+ }
99
99
100
100
# ... omitted
101
101
}
Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ module "wrapper" {
35
35
route_selection_expression = try (each. value . route_selection_expression , var. defaults . route_selection_expression , " $request.method $request.path" )
36
36
tags = try (each. value . tags , var. defaults . tags , {})
37
37
target = try (each. value . target , var. defaults . target , null )
38
- vpc_link_tags = try (each. value . vpc_link_tags , var. defaults . vpc_link_tags , {})
39
38
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 , {})
40
40
}
You can’t perform that action at this time.
0 commit comments