Skip to content

Commit d198a1a

Browse files
Gaurav Singhsankhsin
authored andcommitted
Bug Fix : display name causing update issue
1 parent 02bccd7 commit d198a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/service/database/database_autonomous_database_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2065,7 +2065,7 @@ func (s *DatabaseAutonomousDatabaseResourceCrud) Update() error {
20652065
request.DefinedTags = convertedDefinedTags
20662066
}
20672067

2068-
if displayName, ok := s.D.GetOkExists("display_name"); ok && s.D.HasChange("display_name") {
2068+
if displayName, ok := s.D.GetOkExists("display_name"); ok {
20692069
tmp := displayName.(string)
20702070
request.DisplayName = &tmp
20712071
}

0 commit comments

Comments
 (0)