Skip to content

Commit f278e78

Browse files
authored
Fix indent after online edit
1 parent c6dcb28 commit f278e78

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ovh/resource_ovh_iploadbalancing_http_frontend.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func resourceIpLoadbalancingHttpFrontendCreate(d *schema.ResourceData, meta inte
121121
DedicatedIpFo: dedicatedIpFo,
122122
Disabled: d.Get("disabled").(bool),
123123
Ssl: d.Get("ssl").(bool),
124-
RedirectLocation: d.Get("redirect_location").(string),
124+
RedirectLocation: d.Get("redirect_location").(string),
125125
DisplayName: d.Get("display_name").(string),
126126
}
127127

@@ -172,7 +172,6 @@ func resourceIpLoadbalancingHttpFrontendRead(d *schema.ResourceData, meta interf
172172
d.Set("zone", r.Zone)
173173
d.Set("redirect_location", r.RedirectLocation)
174174

175-
176175
return nil
177176
}
178177

@@ -201,7 +200,7 @@ func resourceIpLoadbalancingHttpFrontendUpdate(d *schema.ResourceData, meta inte
201200
Zone: d.Get("zone").(string),
202201
AllowedSource: allowedSources,
203202
DedicatedIpFo: dedicatedIpFo,
204-
Disabled: d.Get("disabled").(bool),
203+
Disabled: d.Get("disabled").(bool),
205204
Ssl: d.Get("ssl").(bool),
206205
RedirectLocation: d.Get("redirect_location").(string),
207206
DisplayName: d.Get("display_name").(string),

0 commit comments

Comments
 (0)