Skip to content

Commit 322ef04

Browse files
committed
Mark time expires to be the object rather than string representation
This is to retain the original behavior and prevent any unnecessary tfstate inconsistency.
1 parent d24c0d4 commit 322ef04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

provider/object_storage_preauthenticated_request_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ func (s *PreauthenticatedRequestResourceCrud) SetData() {
246246
}
247247

248248
if s.Res.TimeExpires != nil {
249-
s.D.Set("time_expires", s.Res.TimeExpires.String())
249+
s.D.Set("time_expires", s.Res.TimeExpires)
250250
}
251251

252252
if s.Res.AccessUri != nil {

0 commit comments

Comments
 (0)