Skip to content

Commit

Permalink
Remove forcenew on content field
Browse files Browse the repository at this point in the history
  • Loading branch information
tenstad committed Jun 12, 2022
1 parent 60a8695 commit e1e17a5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions internal/provider/resource_remote_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,22 @@ func resourceRemoteFile() *schema.Resource {
"content": {
Description: "Content of file.",
Type: schema.TypeString,
ForceNew: true,
Required: true,
},
"permissions": {
Description: "Permissions of file (in octal form).",
Type: schema.TypeString,
ForceNew: false,
Default: "0644",
Optional: true,
},
"group": {
Description: "Group (GID) of file.",
Type: schema.TypeString,
ForceNew: false,
Optional: true,
},
"owner": {
Description: "Owner (UID) of file.",
Type: schema.TypeString,
ForceNew: false,
Optional: true,
},
},
Expand Down

0 comments on commit e1e17a5

Please sign in to comment.