Skip to content

Commit acfac02

Browse files
committed
fix: indentation
1 parent 8a8726a commit acfac02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

internal/services/instance/server.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ func ResourceServer() *schema.Resource {
7474
DiffSuppressFunc: dsf.IgnoreCase,
7575
},
7676
"protected": {
77-
Type: schema.TypeBool,
78-
Optional: true,
79-
Default: false,
77+
Type: schema.TypeBool,
78+
Optional: true,
79+
Default: false,
8080
Description: "If true, the instance is protected against accidental deletion via the Scaleway API.",
8181
},
8282
"replace_on_type_change": {
@@ -399,7 +399,7 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m
399399
SecurityGroup: types.ExpandStringPtr(zonal.ExpandID(d.Get("security_group_id")).ID),
400400
DynamicIPRequired: scw.BoolPtr(d.Get("enable_dynamic_ip").(bool)),
401401
Tags: types.ExpandStrings(d.Get("tags")),
402-
Protected: scw.BoolPtr(d.Get("protected").(bool)),
402+
Protected: scw.BoolPtr(d.Get("protected").(bool)),
403403
}
404404

405405
enableIPv6, ok := d.GetOk("enable_ipv6")

0 commit comments

Comments
 (0)