Skip to content

Commit e1e17a5

Browse files
committed
Remove forcenew on content field
1 parent 60a8695 commit e1e17a5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

internal/provider/resource_remote_file.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,22 @@ func resourceRemoteFile() *schema.Resource {
3434
"content": {
3535
Description: "Content of file.",
3636
Type: schema.TypeString,
37-
ForceNew: true,
3837
Required: true,
3938
},
4039
"permissions": {
4140
Description: "Permissions of file (in octal form).",
4241
Type: schema.TypeString,
43-
ForceNew: false,
4442
Default: "0644",
4543
Optional: true,
4644
},
4745
"group": {
4846
Description: "Group (GID) of file.",
4947
Type: schema.TypeString,
50-
ForceNew: false,
5148
Optional: true,
5249
},
5350
"owner": {
5451
Description: "Owner (UID) of file.",
5552
Type: schema.TypeString,
56-
ForceNew: false,
5753
Optional: true,
5854
},
5955
},

0 commit comments

Comments
 (0)