Skip to content

Commit 8a5555c

Browse files
committed
feat(interlink): first draft public beta
1 parent 5209610 commit 8a5555c

File tree

6 files changed

+131
-3
lines changed

6 files changed

+131
-3
lines changed
37.1 KB
Loading

faq/interlink.mdx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
meta:
3+
title: InterLink FAQ
4+
description: Discover Scaleway InterLink.
5+
content:
6+
h1: VPC
7+
dates:
8+
created: 2024-12-13
9+
validation: 2024-12-13
10+
category: network
11+
productIcon: DirectConnectProductIcon
12+
---
13+
14+
TODO CHECK PRODUCT ICON
15+
16+
## What is InterLink?
17+
18+
InterLink is Scaleway's product to let you create a secure, private connection between your external infrastructure, and your Scaleway VPC. This allows you to direct your traffic safely from your Scaleway infrastructure to your on-premises infrastructure, away from the public internet.
19+
20+
Currently, InterLink is available in **hosted** version only. This means that you must choose a compatible [partner](/network/interlink/concepts/#partner) to facilitate the physical connection between the external infrastructure and the Scaleway VPC. The physical connection may be shared between several clients, each allocated a specific amount of bandwidth for their InterLink.
21+
22+
<Lightbox src="scaleway-interlink-diag-simple.webp" alt="A diagram shows how a Scaleway VPC, to the left, can be attached to an InterLink, which then connects to external customer infrastructure." />
23+
24+
For more information on how InterLink works, see our [detailed overview](/network/ipam/reference-content/overview/).
25+
26+
## What partners are available to provision my InterLink?
27+
28+
TODO ADD MORE QUESTIONS.

menu/navigation.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3390,6 +3390,76 @@
33903390
"label": "Edge Services",
33913391
"slug": "edge-services"
33923392
},
3393+
{
3394+
"items": [
3395+
{
3396+
"label": "Overview",
3397+
"slug": "../interlink"
3398+
},
3399+
{
3400+
"label": "Concepts",
3401+
"slug": "concepts"
3402+
},
3403+
{
3404+
"label": "Quickstart",
3405+
"slug": "quickstart"
3406+
},
3407+
{
3408+
"label": "FAQ",
3409+
"slug": "../../faq/interlink"
3410+
},
3411+
{
3412+
"items": [
3413+
{
3414+
"label": "Order an InterLink",
3415+
"slug": "order-interlink"
3416+
},
3417+
{
3418+
"label": "Complete InterLink provisioning",
3419+
"slug": "complete-provisioning"
3420+
},
3421+
{
3422+
"label": "Configure an InterLink",
3423+
"slug": "configure-interlink"
3424+
},
3425+
{
3426+
"label": "Create an allowed routes list",
3427+
"slug": "create-allowed-routes-list"
3428+
},
3429+
{
3430+
"label": "Delete an InterLink",
3431+
"slug": "delete-interlink"
3432+
}
3433+
],
3434+
"label": "How to",
3435+
"slug": "how-to"
3436+
},
3437+
{
3438+
"items": [
3439+
{
3440+
"label": "InterLink Overview",
3441+
"slug": "overview"
3442+
},
3443+
{
3444+
"label": "Provisioning",
3445+
"slug": "provisioning"
3446+
},
3447+
{
3448+
"label": "Configuring",
3449+
"slug": "configuring"
3450+
},
3451+
{
3452+
"label": "Statuses",
3453+
"slug": "statuses"
3454+
}
3455+
],
3456+
"label": "Additional content",
3457+
"slug": "reference-content"
3458+
}
3459+
],
3460+
"label": "InterLink",
3461+
"slug": "interlink"
3462+
},
33933463
{
33943464
"items": [
33953465
{

network/interlink/how-to/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ meta:
33
title: InterLink - How Tos
44
description: Learn how to set up and optimize Scaleway InterLink. These how to guides take you from ordering your InterLink, to completing the provisioning process, and all the configuration you need to get the direct connection between your Scaleway VPC and external or on-premises infrastructure, up and running.
55
content:
6-
h1: Edge Services - How Tos
6+
h1: InterLink - How Tos
77
paragraph: Learn how to set up and optimize Scaleway InterLink. These how to guides take you from ordering your InterLink, to completing the provisioning process, and all the configuration you need to get the direct connection between your Scaleway VPC and external or on-premises infrastructure, up and running.
88
---

network/interlink/index.mdx

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ meta:
77

88
<Alert
99
sentiment="info"
10-
title="InterLink is now in Private Beta"
10+
title="InterLink is now in Public Beta TODO CHECK"
1111
>
12-
InterLink is currently available in [Private Beta](https://www.scaleway.com/en/betas/) only, for selected testers. Watch this space for more information on public availability.
12+
InterLink is currently available in [Public Beta](https://www.scaleway.com/en/betas/).
1313
</Alert>
1414

1515
<ProductHeader
@@ -23,12 +23,26 @@ meta:
2323
## Getting Started
2424

2525
<Grid>
26+
<SummaryCard
27+
title="Quickstart"
28+
icon="rocket"
29+
description="Learn how to provision and configure an InterLink"
30+
label="View Quickstart"
31+
url="/network/interlink/quickstart/"
32+
/>
2633
<SummaryCard
2734
title="Concepts"
2835
icon="info"
2936
description="Core concepts that give you a better understanding of InterLink."
3037
label="View Concepts"
3138
url="/network/interlink/concepts/"
39+
/>
40+
<SummaryCard
41+
title="How-tos"
42+
icon="help-circle-outline"
43+
description="Check our guides to ordering and configuring an InterLink."
44+
label="View How-tos"
45+
url="/network/interlink/how-to/"
3246
/>
3347
<SummaryCard
3448
title="Additional Content"

network/interlink/quickstart.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
meta:
3+
title: InterLink - Quickstart
4+
description: Get started with Scaleway InterLink in minutes. Follow this quickstart guide to order, provision and configure your InterLink to get traffic flowing as soon as possible.
5+
content:
6+
h1: InterLink - Quickstart
7+
paragraph: Get started with Scaleway InterLink in minutes. Follow this quickstart guide to order, provision and configure your InterLink to get traffic flowing as soon as possible.
8+
tags: load-balancer load balancer frontend backend
9+
dates:
10+
validation: 2024-12-13
11+
posted: 2024-12-13
12+
categories:
13+
- network
14+
---
15+
16+
TODO

0 commit comments

Comments
 (0)