Cloud-native guide

When lift and shift is the right answer

Lift and shift has a poor reputation it has partly earned, mostly from migrations that moved everything unchanged, cost more than the datacentre did and left the organisation with the same systems in a more expensive place. It is still the right decision more often than the industry admits. The deciding factor is not the technical quality of the outcome, which is always worse than rearchitecting, but whether the application has a future worth investing in.

What does lift and shift actually mean?

Moving a workload to cloud infrastructure with as few changes as possible: the same operating system, the same application, the same architecture, running on virtual machines instead of your own hardware. Nothing is containerised, nothing is decomposed, and the deployment process usually stays exactly as it was.

The value is speed and containment of risk. Because the application does not change, the testing burden is about the environment rather than about behaviour, which means a migration that would take eighteen months as a rearchitecture can take a few months as a move. That difference is the entire argument, and against a hard deadline it is decisive.

It is worth separating this from replatforming, which keeps the application but swaps its supporting pieces: your self-managed database for a managed one, your virtual machine for a container, your cron server for a scheduled job. Replatforming captures a meaningful share of the operational benefit for a small fraction of the work of a rewrite, and it is frequently the option that should have been chosen instead of either extreme.

When is it the right call?

Four situations, and they share a shape: the deadline or the risk is external, and rearchitecting does not change it. A datacentre lease or contract ending on a fixed date. Hardware or a support contract reaching end of life, where staying put means an unsupported system. An application scheduled for replacement within a couple of years, where investment in its architecture will be discarded. And a system nobody left in the organisation fully understands, where changing it and moving it at the same time makes any failure impossible to diagnose.

That last one is the most underrated. Moving an application unchanged means any problem after the move is an environment problem, which is a small and searchable space. Moving and rearchitecting simultaneously means every problem could be either, and the investigation cost of that ambiguity is routinely larger than the work saved by combining the two.

There is a fifth, quieter case: a workload that is simply fine. Steady load, low change rate, no scaling requirement, and nobody complaining. Rearchitecting it produces a technically superior system that delivers nothing to the business, and the engineering time has an alternative use.

What does each option actually cost you?

The trade is between the effort now, the running cost afterwards, and what you are able to do next. Lift and shift minimises the first, worsens the second, and leaves the third roughly where it was. A rebuild inverts all three. The middle options are where most workloads should end up and where fewest do, because they are less satisfying to argue for in a meeting.

ApproachEffort nowMonthly cost afterWhat it enables afterwards
RetireDiscovery and stakeholder negotiation onlyZeroNothing, which is the point
Replace with SaaSData migration and process changePer-seat, predictableNo further engineering investment required
Lift and shiftLowest engineering effortUsually higher than the datacentre it leftElasticity is unavailable; the deadline is met
ReplatformModerate: managed database, containerised runtimeLower than lift and shift, more predictableAutomated deploys, backups and patching handled
RearchitectHigh, and it competes with the product roadmapLowest at scale, if load genuinely variesIndependent scaling and release of components

Why do lifted workloads often cost more in the cloud?

Because you move a machine sized for peak and then pay for that size every hour, where the same over-provisioning in your own rack was a sunk capital cost that felt free. A server bought three years ago and running at fifteen per cent utilisation costs nothing extra at fifteen per cent. The same specification rented costs the full amount whether it is busy or idle.

Storage behaves similarly and less obviously. Local disks in owned hardware are effectively unmetered once bought, while cloud block storage is billed on provisioned capacity and often separately on provisioned throughput, so a database configured for a spinning-disk era with generous headroom can carry a substantial monthly charge for capacity it will never use.

The fix is right-sizing, and it needs actual utilisation data rather than the original specification. Measure for a full business cycle, including month end and any seasonal peak, then size to the observed peak plus headroom. This is the single highest-return activity after a lift and shift, and it usually recovers a meaningful part of the difference within the first quarter.

What should you change even in a pure lift?

Five things, none of which touch application code. Identity, so access is through the cloud identity provider with multi-factor authentication rather than the local accounts that came with the machines. Network segmentation, because a flat network that was acceptable behind a firewall in a building is a different proposition in a public cloud account. Backups, tested by restoring rather than by checking that the job ran. Monitoring, at least at the level of host health and disk capacity. And a repeatable build for the machine image, so the server can be recreated rather than restored.

The last one is the difference between a migration and a copy. If the only record of how that server was configured is the server itself, you have moved a single point of failure rather than removed one, and the first time it needs recreating under pressure you will discover which undocumented change from four years ago was load bearing.

None of these require rearchitecting and all of them are cheaper during the move than afterwards, because the machine is already being touched and the change window already exists.

How do you stop the temporary state becoming permanent?

By writing down what happens next while the migration is still funded, and by attaching it to a specific trigger rather than a date. Dates in a modernisation plan slip indefinitely because nothing forces them. Triggers do not: the next major version upgrade of the runtime, the next significant feature in that area, the next time the workload needs more capacity. Each is a moment when someone will be in the code anyway.

It also helps to be explicit that the lifted state is more expensive to run, and to make that visible on the same report as everything else. A cost line that nobody sees generates no pressure, and the argument for replatforming is usually easiest to win with a number rather than an architectural preference.

And accept that some workloads should stay lifted forever. If an application is stable, cheap enough, and nobody is asking anything new of it, leaving it on a virtual machine is a legitimate end state rather than technical debt. Modernisation is worth doing where it changes what the business can do, and treating it as a moral obligation is how engineering time gets spent on systems nobody was complaining about.

Common questions

What is lift and shift migration?
Moving a workload to cloud infrastructure with as few changes as possible: same operating system, same application, same architecture, running on virtual machines instead of owned hardware. Nothing is containerised or decomposed. The benefit is speed and contained risk, because the testing burden concerns the environment rather than application behaviour, which makes it viable against a fixed deadline.
When should you lift and shift instead of rearchitecting?
When a datacentre contract or hardware support ends on a fixed date, when the application is scheduled for replacement within a couple of years, when nobody remaining fully understands the system, or when the workload is simply stable and nobody is asking anything new of it. In each case rearchitecting spends engineering effort that the deadline or the retirement plan will discard.
Why does lift and shift cost more in the cloud?
Because a machine sized for peak is now billed hourly at that size, where the same over-provisioning in owned hardware was a sunk cost that felt free. Storage compounds it, since cloud block storage is billed on provisioned capacity and often on provisioned throughput separately. Right-sizing against a full business cycle of real utilisation data is the highest-return work after the move.
What is the difference between replatforming and rearchitecting?
Replatforming keeps the application and swaps its supporting pieces: a self-managed database for a managed one, a virtual machine for a container, a cron server for a scheduled job. Rearchitecting changes the application itself, typically decomposing it. Replatforming captures much of the operational benefit for a fraction of the effort, and is the option most often skipped in favour of one of the two extremes.
What should you improve even during a straight lift and shift?
Identity, so access runs through the cloud identity provider with multi-factor authentication rather than local machine accounts. Network segmentation, because a flat network is a different risk in a public cloud account. Backups verified by restoring. Basic host and disk monitoring. And a repeatable build for the machine image, so the server can be recreated rather than only restored from a copy of itself.

More on Cloud-native development

Let’s create something out of this world together.

Have a project in mind? Contact us for expert design and development solutions. Let’s discuss how we can help grow your business.

Azaadi Offer

Claim a free security assessment

Until 31 August we're covering the cost of a full vulnerability assessment and penetration test. Mention it in your message and we'll scope it with you.

  • Web application testing, authenticated and unauthenticated
  • Mobile application testing across iOS and Android
  • External network and infrastructure assessment
  • Manual exploitation by engineers, not scanner output

Testing and the report are free. Fixing what we find is quoted separately, with no obligation to accept.

Read the full offer

Tell us what you are trying to build and we will tell you plainly whether we are the right people for it. Book a call with an expert to work through the detail, or ask for a fixed quote if the scope is already clear. No obligation either way.

Four fields is all we need to get started.

Fastnexa Logo

© 2026 fastnexa. All rights reserved.