Skip to content

Commit a891fac

Browse files
committed
Fix linter
1 parent 089d3e6 commit a891fac

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

internal/services/lb/backends_data_source.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ func DataSourceBackends() *schema.Resource {
6363
Description: func() string {
6464
var t lb.ForwardPortAlgorithm
6565
values := t.Values()
66+
6667
return fmt.Sprintf("Load balancing algorithm to be used when determining which backend server to forward new traffic to. Possible values are: %s", values)
6768
}(),
6869
Type: schema.TypeString,

internal/services/lb/lbs_data_source.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ func DataSourceLbs() *schema.Resource {
166166
Description: func() string {
167167
var t lb.SSLCompatibilityLevel
168168
values := t.Values()
169+
169170
return fmt.Sprintf("SSL compatibility level possible values are %s", values)
170171
}(),
171172
Type: schema.TypeString,

internal/services/secret/secret.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ func ResourceSecret() *schema.Resource {
8585
Description: func() string {
8686
var t secret.SecretType
8787
secretTypes := t.Values()
88+
8889
return fmt.Sprintf("Type of the secret could be any value among: %s", secretTypes)
8990
}(),
9091
Optional: true,

0 commit comments

Comments
 (0)