Skip to content

Commit bac6d0a

Browse files
fix(rdb): reviews 06/01 (#4175)
1 parent a3152c6 commit bac6d0a

22 files changed

+46
-29
lines changed

containers/container-registry/how-to/connect-docker-cli.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Instructions for connecting Docker CLI to Scaleway's Container Registry.
88
tags: namespace docker-cli container-registry
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2019-02-25
1212
categories:
1313
- container-registry
@@ -29,10 +29,10 @@ Docker is a tool that makes it easy to manage container images. You can use Dock
2929
4. Open a terminal window on your local computer.
3030
5. Run the following command to log into the namespace:
3131
```
32-
docker login rg.fr-par.scw.cloud/mynamespace -u nologin -p [SCW_SECRET_KEY]
32+
docker login rg.fr-par.scw.cloud/mynamespace -u nologin --password-stdin <<< "$SCW_SECRET_KEY"
3333
```
3434
<Message type="important">
35-
Replace `[SCW_SECRET_KEY]` with your [API secret key](/identity-and-access-management/iam/how-to/create-api-keys/) and `mynamespace` with the name of your namespace.
35+
Replace `"$SCW_SECRET_KEY"` with your [API secret key](/identity-and-access-management/iam/how-to/create-api-keys/) and `mynamespace` with the name of your namespace.
3636
</Message>
3737

3838
Once logged in, confirmation is displayed:

containers/container-registry/how-to/pull-images.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn how to pull container images from Scaleway's Container Registry.
88
tags: container-registry namespace
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2019-02-25
1212
categories:
1313
- container-registry

identity-and-access-management/iam/how-to/invite-user-to-orga.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ content:
66
h1: How to invite another user to an Organization
77
paragraph: Learn how to invite users to your Scaleway Organization
88
dates:
9-
validation: 2024-06-26
9+
validation: 2025-01-06
1010
posted: 2022-06-20
1111
---
1212

identity-and-access-management/iam/how-to/manage-applications.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ content:
66
h1: How to manage IAM applications
77
paragraph: Learn how to manage applications using Scaleway IAM.
88
dates:
9-
validation: 2024-06-26
9+
validation: 2025-01-06
1010
posted: 2022-06-20
1111
---
1212

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
meta:
3+
title: Organizations and Projects - API/CLI Documentation
4+
description: Learn to use the API and CLI for managing Organizations and Projects
5+
content:
6+
h1: Organizations and Projects - API/CLI Documentation
7+
paragraph: Learn to use the API and CLI for managing Organizations and Projects
8+
---

identity-and-access-management/iam/api-cli/managing-projects.mdx renamed to identity-and-access-management/organizations-and-projects/api-cli/managing-projects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn how to manage Projects with Scaleway's IAM API and CLI tools. Follow step-by-step instructions to streamline operations.
88
tags: API Projects IAM
99
dates:
10-
validation: 2024-07-02
10+
validation: 2025-01-06
1111
posted: 2022-07-25
1212
categories:
1313
- IAM

managed-databases/postgresql-and-mysql/how-to/clone-a-database-instance.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Step-by-step guide to cloning a PostgreSQL or MySQL Database Instance.
88
tags: managed-database database database-instance
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2019-10-20
1212
categories:
1313
- managed-databases

managed-databases/postgresql-and-mysql/how-to/configure-advanced-settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Guide to configuring advanced settings for your PostgreSQL and MySQL databases.
88
tags: managed-database postgresql mysql database-instance advanced-settings
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2019-05-11
1212
categories:
1313
- managed-databases

managed-databases/postgresql-and-mysql/how-to/create-read-replica.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Learn how to create Read Replicas for PostgreSQL and MySQL databases.
88
tags: managed-database read-replica read replicas
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2022-09-01
1212
categories:
1313
- managed-databases
@@ -41,6 +41,7 @@ Read Replicas allow you to scale your Database Instance for read-heavy database
4141

4242
- **Public network** - Resources in a public network are publicly visible by default. The default Access Control List (ACL) settings allow anybody to connect to resources in your network. You can restrict access by configuring ACLs in the Allowed IPs section.
4343
- **Private Networks** - Private Networks allow you to create virtual Private Networks for your Databases, enabling them to communicate in an isolated network without the need for a public IP address. If you select this option, you must select an existing Private Network to attach to your Read Replica.
44+
4445
<Message type="note">
4546
Your private IP addresses are automatically allocated. They are managed via an IP Address Manager (IPAM). You can retrieve them on the Private Network tab of your Database Instance. To allocate IPs manually, you can use the Scaleway API and CLI, or Terraform.
4647
</Message>

managed-databases/postgresql-and-mysql/how-to/delete-a-database.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Instructions for deleting a PostgreSQL or MySQL Database Instance on Scaleway.
88
tags: managed-database postgresql mysql database-instance
99
dates:
10-
validation: 2024-07-04
10+
validation: 2025-01-06
1111
posted: 2019-05-11
1212
categories:
1313
- managed-databases

0 commit comments

Comments
 (0)