File tree Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Expand file tree Collapse file tree 2 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/antonbabenko/pre-commit-terraform
3
- rev : v1.100.0
3
+ rev : v1.100.1
4
4
hooks :
5
5
- id : terraform_fmt
6
6
- id : terraform_wrapper_module_for_each
Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ module "alb" {
104
104
weighted_forward = {
105
105
target_groups = [
106
106
{
107
- key = " ex-lambda-with-trigger"
108
- weight = 2
107
+ target_group_key = " ex-lambda-with-trigger"
108
+ weight = 2
109
109
},
110
110
{
111
- key = " ex-instance"
112
- weight = 1
111
+ target_group_key = " ex-instance"
112
+ weight = 1
113
113
}
114
114
]
115
115
stickiness = {
@@ -259,15 +259,19 @@ module "alb" {
259
259
}
260
260
}]
261
261
262
- conditions = [{
263
- query_string = [{
264
- key = " weighted"
265
- value = " true"
266
- }],
267
- path_pattern = {
268
- values = [" /some/path" ]
269
- }
270
- }]
262
+ conditions = [
263
+ {
264
+ query_string = [{
265
+ key = " weighted"
266
+ value = " true"
267
+ }]
268
+ },
269
+ {
270
+ path_pattern = {
271
+ values = [" /some/path" ]
272
+ }
273
+ },
274
+ ]
271
275
}
272
276
273
277
ex-redirect = {
You can’t perform that action at this time.
0 commit comments