Skip to content

Commit c0b3164

Browse files
committed
fix(lb): finish migration doc
1 parent d196fce commit c0b3164

File tree

4 files changed

+37
-6
lines changed

4 files changed

+37
-6
lines changed

menu/navigation.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4190,6 +4190,10 @@
41904190
"label": "Public vs private Load Balancers",
41914191
"slug": "public-private-accessibility"
41924192
},
4193+
{
4194+
"label": "Migrating from AWS ELB",
4195+
"slug": "migrating-aws"
4196+
},
41934197
{
41944198
"label": "Deprecation of SNI routes with HTTP backends",
41954199
"slug": "sni-route-deprecation"
98.1 KB
Loading
72.1 KB
Loading

pages/load-balancer/reference-content/migrating-aws.mdx

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
---
22
title: Migrating from AWS to Scaleway for your load balancer needs
3-
description: TODO
4-
tags: load-balancer TODO
3+
description: Migrate from AWS to Scaleway for load balancing with this guide. Learn about the differences and equivalences between AWS Elastic Load Balancers and Scaleway Load Balancers, including types, concepts, setup, and pricing
4+
tags: load-balancer ELB application network listener target-group Scaleway AWS elastic-load-balancer
55
dates:
66
validation: 2025-07-28
77
posted: 2025-07-28
88
---
99

10+
import lbDiagSimple from './assets/scaleway-lb-diag-simple.webp'
11+
import lbDiagComplex from './assets/scaleway-lb-diag-complex.webp'
12+
1013
You may be used to creating and managing your cloud load balancers with AWS. This document is intended to help and guide users considering migrating from AWS to Scaleway for their load balancing needs. It aims to help you understand the differences and equivalences between load balancer concepts and resource creation with AWS versus Scaleway.
1114

1215
## Load Balancer products and types
1316

14-
AWS offers several different "Elastic" Load Balancer products. Scaleway offers a single **Load Balancer** product, which can be configured in different ways to provide equivalences to the various types of AWS Elastic Load Balancer: <br/><br/>
17+
AWS offers several different "Elastic" Load Balancer products. Scaleway offers a single **Load Balancer** product, which can be [configured in different ways](##application-vs-network-with-scaleway) to provide equivalences to the various types of AWS Elastic Load Balancer: <br/><br/>
1518

1619

1720
| | AWS Classic LB | AWS Application LB | AWS Network LB | AWS Gateway LB | SCW LB |
1821
|--------------|------------------------|--------------------|----------------|----------------|-----------------------|
1922
| OSI Layer | L4 & L7 | L7 | L4 | L3 & L4 | L4 & L7 |
2023
| Protocols | HTTP, HTTPS, TCP | HTTP, HTTPS | TCP, TLS, UDP | All IP traffic | HTTP, HTTPS, TCP, TLS |
2124

22-
2325
## Key concepts and naming differences
2426

2527
AWS and Scaleway do not always use the same wording to describe similar Load Balancer features. The table below is designed to help you translate feature and concept naming from one cloud provider's load balancer product to another:
@@ -29,11 +31,16 @@ AWS and Scaleway do not always use the same wording to describe similar Load Bal
2931
| Target group | Backend |
3032
| Target | Backend server |
3133
| Listener | Frontend |
32-
| Listener rules | Route rules |
34+
| Listener rules | Routes |
35+
| Listener rules | Routes |
3336
| Internal Load Balancer | Private Load Balancer |
3437
| Security group | ACL |
3538
| Metrics with Amazon CloudWatch | Metrics with Scaleway Cockpit |
3639

40+
The diagram below shows the simplest form of Scaleway Load Balancer:
41+
42+
<Lightbox image={lbDiagSimple} alt="A diagram shows how user requests or connections flow through a Load Balancer's public IP, to a frontend, to a backend, to backend servers" />
43+
3744
## Scaleway Load Balancer features
3845

3946
Scaleway Load Balancer offers the following features:
@@ -60,7 +67,9 @@ Scaleway Load Balancer offers the following features:
6067
- Compatibility with Scaleway Kubernetes Kapsule and Scaleway CCM
6168
- Caching and WAF via Edge Services
6269

63-
## Creating an AWS Load Balancer vs a Scaleway Load Balancer
70+
## Load Balancer creation
71+
72+
### AWS flow vs Scaleway flow
6473

6574
The process for creating a Scaleway Load Balancer is different to that of AWS. Whereas for AWS, you must first define the target group that the load balancer will forward traffic to, with Scaleway you begin by creating the Load Balancer itself and then define the target group (server IPs) during creation of the Load Balancer's backend.
6675

@@ -73,6 +82,24 @@ The process for creating a Scaleway Load Balancer is different to that of AWS. W
7382

7483
The full process of creating a Load Balancer with Scaleway is detailed in the [Load Balancer Quickstart](/load-balancer/quickstart/).
7584

85+
The diagram below shows a Scaleway Load Balancer with multiple frontends and backends. In this case, the frontends listen on different ports, and use routes to determine which of their attached backends to forward traffic to.
86+
87+
<Lightbox image={lbDiagComplex} alt="A diagram shows how user requests or connections flow through a Load Balancer's public IP, to one of multiple frontends, to one of multiple backends, to backend servers" />
88+
89+
### Application vs Network with Scaleway
90+
91+
To create the equivalent of an AWS **Application Load Balancer**, with Scaleway you will typically create a Load Balancer with:
92+
93+
- One or more frontends listening on port 80 or 443
94+
- One or more backends configured for HTTP or HTTPS protocol
95+
- (Optional): Routes from frontends to backends based on HTTP Host headers
96+
97+
To create the equivalent of an AWS **Network Load Balancer**, with Scaleway you will typically create a Load Balancer with:
98+
99+
- One or more frontends listening on a port matching your application
100+
- One or more backends configured for TCP protocol
101+
- (Optional): Routes from frontends to backends based on SNI
102+
76103
## Plans and pricing
77104

78105
Like AWS, the pricing model for Scaleway Load Balancers is based on an hourly rate. Different commercial types of Load Balancer have a different hourly rate, based on:

0 commit comments

Comments
 (0)