Skip to content

Commit bf03186

Browse files
fix(acc): change console links (#4550)
1 parent 8126550 commit bf03186

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

pages/instances/api-cli/creating-managing-instances-with-cliv2.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories:
1313
- compute
1414
---
1515

16-
Scaleway Instances provide you with resources to develop, test code and deploy your applications in no time. Instances are designed for modern workflows. They are with you from prototyping to large-scale deployment. You can [create](/instances/how-to/create-an-instance/) and manage your Instances from the [console](https://console.scaleway.com/login), via the [API](https://www.scaleway.com/en/developers/api/instance/) or the [Scaleway Command Line Interface](https://github.com/scaleway/scaleway-cli).
16+
Scaleway Instances provide you with resources to develop, test code and deploy your applications in no time. Instances are designed for modern workflows. They are with you from prototyping to large-scale deployment. You can [create](/instances/how-to/create-an-instance/) and manage your Instances from the [console](https://account.scaleway.com/login), via the [API](https://www.scaleway.com/en/developers/api/instance/) or the [Scaleway Command Line Interface](https://github.com/scaleway/scaleway-cli).
1717

1818
## Scaleway Command Line Interface (CLI) overview
1919

pages/object-storage/api-cli/managing-lifecycle-cliv2.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ categories:
1414
- object-storage
1515
---
1616

17-
[Scaleway Object Storage](/object-storage/concepts/#object-storage) is a service based on the Amazon S3 protocol. It allows you to store different types of objects (documents, images, videos, etc.) and distribute them instantly, anywhere in the world. You can create and manage your Object Storage resources from the [console](https://console.scaleway.com/login), or via the [Scaleway Command Line Interface](/scaleway-cli/quickstart/) that uses external tools such as [S3cmd](https://github.com/s3tools/s3cmd), [Rclone](https://rclone.org/downloads/) or [MinIO Client (mc)](https://github.com/minio/mc).
17+
[Scaleway Object Storage](/object-storage/concepts/#object-storage) is a service based on the Amazon S3 protocol. It allows you to store different types of objects (documents, images, videos, etc.) and distribute them instantly, anywhere in the world. You can create and manage your Object Storage resources from the [console](https://account.scaleway.com/login), or via the [Scaleway Command Line Interface](/scaleway-cli/quickstart/) that uses external tools such as [S3cmd](https://github.com/s3tools/s3cmd), [Rclone](https://rclone.org/downloads/) or [MinIO Client (mc)](https://github.com/minio/mc).
1818

1919
## Scaleway Command Line Interface Overview
2020

21-
[The Scaleway Command Line Interface (CLI)](/scaleway-cli/quickstart/) allows you to pilot your Scaleway infrastructure directly from your terminal, providing a faster way to administer and monitor your resources. Scaleway CLI is easy to set up and is an essential tool for operating efficiently in your cloud environment.
21+
[The Scaleway Command Line Interface (CLI)](/scaleway-cli/quickstart/) allows you to pilot your Scaleway infrastructure directly from your terminal, providing a faster way to administer and monitor your resources. Scaleway CLI is easy to set up and is an essential tool for operating efficiently in your cloud environment.
2222

2323
<Macro id="requirements" />
2424

@@ -100,7 +100,7 @@ Run the following command in a terminal to preview the configuration file for Mi
100100

101101
## Installing a configuration file for Amazon S3-compatible tools (s3cmd, rclone, and mc)
102102

103-
The `scw object config install` allows you to create a configuration file for the selected third party tool based on your [Scaleway CLI configuration](/scaleway-cli/quickstart/).
103+
The `scw object config install` allows you to create a configuration file for the selected third party tool based on your [Scaleway CLI configuration](/scaleway-cli/quickstart/).
104104

105105
<Message type="important">
106106
Creating a new configuration file using `scw object config install` will overwrite the existing one for the specified third party tool. To update an existing configuration, [generate a preview](#previewing-an-object-storage-configuration-file-for-the-scaleway-cli) and manually edit the configuration file.
@@ -109,7 +109,7 @@ The `scw object config install` allows you to create a configuration file for th
109109
<Tabs>
110110
<TabsTab label="Rclone">
111111
Run the following command in a terminal to install a configuration file for Rclone:
112-
112+
113113
```
114114
scw object config install type=rclone
115115
```
@@ -165,7 +165,7 @@ Run the following command in a terminal to install a configuration file for MinI
165165

166166
An output similar to the following displays:
167167
```
168-
rclone lsd scaleway:
168+
rclone lsd scaleway:
169169
-1 2022-06-04 14:38:03 -1 my-bucket
170170
-1 2023-12-23 12:10:57 -1 my-new-bucket
171171
```

tutorials/large-messages/index.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dates:
1717

1818
In this tutorial, we will build a simple architecture to store and automatically convert images to PDF. The focus is on transferring large messages using a messaging service, specifically the [Scaleway NATS](/messaging/quickstart/) server. Our setup involves using the [Object Storage](/object-storage/quickstart/) service for image storage and the [Serverless Functions](/serverless-functions/quickstart/) service for conversion.
1919

20-
We show how to provision all the required Scaleway resources via Terraform/OpenTofu, but you can also use the [console](https://console.scaleway.com/login), the [API](https://www.scaleway.com/en/developers/api/) or one of our other supported [developer tools](https://www.scaleway.com/en/developers/).
20+
We show how to provision all the required Scaleway resources via Terraform/OpenTofu, but you can also use the [console](https://account.scaleway.com/login), the [API](https://www.scaleway.com/en/developers/api/) or one of our other supported [developer tools](https://www.scaleway.com/en/developers/).
2121

2222
You can retrieve the full source code in [this repository](https://github.com/rouche-q/serverless-examples/tree/main/projects/large-messages/README.md), so you can choose to either jump straight into the code or else follow along with the step-by-step explanation below to create the architecture yourself.
2323

@@ -364,6 +364,6 @@ terraform apply
364364
## Conclusion, going further
365365
366366
In this introductory tutorial, we have demonstrated the usage of the Scaleway NATS server, along with other services from the Scaleway ecosystem, to facilitate the transfer of large messages surpassing the typical size constraints. There are possibilities to expand upon this tutorial for various use cases, such as:
367-
367+
368368
- Extending the conversion capabilities to handle different document types like `docx`.
369369
- Sending URLs directly to NATS and converting HTML content to PDF.

tutorials/migrating-from-another-managed-kubernetes-service-to-scaleway-kapsule/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ kubectl get crd --all-namespaces -o yaml > crds.yaml
8282

8383
### 2.1 Create a Scaleway account
8484

85-
If you do not already have one, [sign up for a Scaleway account](https://console.scaleway.com/register/).
85+
If you do not already have one, [sign up for a Scaleway account](https://account.scaleway.com/register/).
8686

8787
### 2.2 Install Scaleway CLI (Optional)
8888

0 commit comments

Comments
 (0)