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 11repos :
22 - repo : https://github.com/antonbabenko/pre-commit-terraform
3- rev : v1.100.0
3+ rev : v1.100.1
44 hooks :
55 - id : terraform_fmt
66 - id : terraform_wrapper_module_for_each
Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ module "alb" {
104104 weighted_forward = {
105105 target_groups = [
106106 {
107- key = " ex-lambda-with-trigger"
108- weight = 2
107+ target_group_key = " ex-lambda-with-trigger"
108+ weight = 2
109109 },
110110 {
111- key = " ex-instance"
112- weight = 1
111+ target_group_key = " ex-instance"
112+ weight = 1
113113 }
114114 ]
115115 stickiness = {
@@ -259,15 +259,19 @@ module "alb" {
259259 }
260260 }]
261261
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+ ]
271275 }
272276
273277 ex-redirect = {
You can’t perform that action at this time.
0 commit comments