Skip to content

Commit 7c95874

Browse files
committed
fix: subtle fix to the way it fetches boolean values
1 parent 6c6a040 commit 7c95874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

provider/resource_rediscloud_active_active_database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ func resourceRedisCloudActiveActiveDatabaseUpdate(ctx context.Context, d *schema
830830
update.GlobalDataPersistence = redis.String(d.Get("global_data_persistence").(string))
831831
}
832832

833-
if v, ok := d.GetOk("global_enable_default_user"); ok {
833+
if v, ok := d.GetOkExists("global_enable_default_user"); ok {
834834
update.GlobalEnableDefaultUser = redis.Bool(v.(bool))
835835
}
836836

0 commit comments

Comments
 (0)