Skip to content

Commit 209c2c1

Browse files
ldecarvalho-docbene2k1RoRoJ
authored
fix(gen): reviews 25/08 (#5453)
* fix(gen): reviews 25/08 * Apply suggestions from code review Co-authored-by: Rowena Jones <[email protected]> --------- Co-authored-by: Benedikt Rollik <[email protected]> Co-authored-by: Rowena Jones <[email protected]>
1 parent f472db3 commit 209c2c1

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

pages/billing/concepts.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Billing - Concepts
33
description: Understand the key billing concepts in the Scaleway console.
44
tags: billing account pricing payment
55
dates:
6-
validation: 2025-02-17
6+
validation: 2025-08-25
77
---
88

99
## Billing alerts
@@ -65,10 +65,14 @@ Pay-as-you-go is a billing system in which you only pay for what you consume ins
6565

6666
The payment methods registered on your account are used to pay your invoice. You can set one of your payment methods as the default and manage your different payment methods from the console.
6767

68+
Refer to the [How to add a payment method](/billing/how-to/add-payment-method) documentation page for more information.
69+
6870
## Project
6971

7072
A Project is a grouping of Scaleway [resources](/iam/concepts/#resource). Each Scaleway Organization comes with a default Project, and you can create new Projects if necessary. Projects are cross-regional, meaning resources located in different [regions](/instances/concepts/#region) can be grouped into one single Project. When grouping resources into different Projects, you can use [IAM](/iam/concepts/#iam) to define custom access rights for each Project.
7173

74+
Refer to the [How to create a Project](/organizations-and-projects/how-to/create-a-project) documentation page for more information.
75+
7276
## Pro-rata billing
7377

7478
You are billed pro rata on certain products for the initial month of a subscription. This means the charge is adjusted to reflect the portion of the first month you used the product. Starting from the second month and onward, you are billed in full at the beginning of each month, covering the entire upcoming billing period in advance. This billing model ensures that you pay for the service based on your actual usage for the first month and then in advance for subsequent months.

pages/iam/concepts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Permissions sets (e.g.`InstanceReadAccess`) and their [scope](#scope) (e.g. "on
9595

9696
## Policy
9797

98-
Policies control user rights by defining one or more [rules](#rule) to apply to the attached [principals](#principal) (users, groups, or applications). A policy rule has two parts: [permission set](#permission-set) and [scope](#scope).
98+
Policies control user rights by defining one or more [rules](#rule) to apply to the attached [principals](#principal) (users, groups, or applications). A policy rule has three parts: [permission set](#permission-set), [scope](#scope) and [conditions](#conditions).
9999

100100
For each policy rule, you specify one or more permission sets (e.g. "list all Instances") and their scope (e.g. "on Project A only"). This therefore defines the actions that the principles can carry out on resources within the scope.
101101

pages/iam/how-to/enforce-security-requirements-members.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: How to enforce security requirements for IAM members in your Organization
33
description: This page shows you how to edit the grace period IAM members have to comply with security requirements and enforce password renewal.
44
dates:
5-
validation: 2025-02-11
5+
validation: 2025-08-25
66
posted: 2025-02-11
77
---
88
import Requirements from '@macros/iam/requirements.mdx'

pages/managed-databases-for-postgresql-and-mysql/api-cli/logical-replication-as-subscriber.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Setting up logical replication as a subscriber in PostgreSQL
33
description: Learn how to set up and use logical replication as a subscriber in PostgreSQL to migrate your database with zero downtime
44
tags: postgresql logical replication subscriber migration database
55
dates:
6-
validation: 2025-02-20
6+
validation: 2025-08-25
77
posted: 2025-02-20
88
---
99

@@ -31,7 +31,7 @@ To be able to create a subscription, you must have the privileges of the `pg_cre
3131
1. Grant `pg_create_subscription` and CREATE privileges to your role of choice. In this example we use `my_replication_user`. Make sure you replace all variables with the information of your databases.
3232

3333
<Message type="note">
34-
You must follow the step below as an admin. Only users with admin rights can grant `pg_create_subscription` to other users.
34+
You must follow the step below as an admin. Only users with admin rights can grant `pg_create_subscription` to other users.
3535
</Message>
3636

3737
```sql
@@ -74,7 +74,7 @@ To be able to create a subscription, you must have the privileges of the `pg_cre
7474

7575
When creating a subscription from a Scaleway Database Instance to a public IP, the public interface of the Database Instance node is used to connect to the publisher. This might incur in the following consequences:
7676

77-
- If you only have a private endpoint, your Database Instance will still have a public management IP address. The ports are all closed, stopping all connections except the one with the publisher database. All outgoing data is securely encrypted.
77+
- If you only have a private endpoint, your Database Instance will still have a public management IP address. The ports are all closed, stopping all connections except the one with the publisher database. All outgoing data is securely encrypted.
7878
- If your Database Instance set-up is composed of more than one node, your IP address is subject to change. In case of failover, for example, the IP address connecting to the publisher database will change. We cannot predict the new IP your nodes might take. However, you can use [Scaleway's Autonomous System](https://ipinfo.io/AS12876) to check the number (ASN) of your primary node's IP address, and look up the IP address allocation for the ASN. This can help you predict the IP address of your failover nodes.
7979
- There is a limit to the number of subscriptions that can be created per Database Instance offer. You can find the table of maximum number of subscriptions per node type below.
8080

pages/managed-databases-for-postgresql-and-mysql/api-cli/using-pgcron.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Setting up and using the pg_cron extension
33
description: This page explains how to set up and use the pg_cron extension on Scaleway's Managed Databases for PostgreSQL.
44
tags: managed-database postgresql pg_cron pg-extensions
55
dates:
6-
validation: 2025-02-18
6+
validation: 2025-08-25
77
posted: 2025-02-18
88
---
99
import Requirements from '@macros/iam/requirements.mdx'

pages/managed-databases-for-postgresql-and-mysql/how-to/add-a-database.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to create a database
33
description: Learn how to add a new database to your PostgreSQL and MySQL Database Instances.
44
tags: managed-database database postgresql ferretdb database-instance mongodb
55
dates:
6-
validation: 2025-02-17
6+
validation: 2025-08-25
77
posted: 2023-08-01
88
---
99
import Requirements from '@macros/iam/requirements.mdx'

pages/managed-databases-for-postgresql-and-mysql/how-to/delete-db.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to delete a database
33
description: Guide to deleting databases in your PostgreSQL and MySQL Database Instances.
44
tags: managed-database postgresql mysql
55
dates:
6-
validation: 2025-02-17
6+
validation: 2025-08-25
77
posted: 2023-08-01
88
---
99
import Requirements from '@macros/iam/requirements.mdx'

pages/managed-databases-for-redis/troubleshooting/database-instance-unavailable.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Dealing with Database Instance unavailability
33
description: Troubleshoot Database Instance unavailability for Managed Databases for Redis™.
44
tags: unavailability databases
55
dates:
6-
validation: 2025-02-17
6+
validation: 2025-08-25
77
posted: 2025-02-17
88
---
99

pages/managed-mongodb-databases/how-to/connect-database-private-network.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: How to connect an existing MongoDB® Database Instance to a Private Netwo
33
description: Instructions for connecting your MongoDB® Database Instance over a Private Network.
44
tags: managed-mongodb mongodb private-network database-instance
55
dates:
6-
validation: 2025-02-17
6+
validation: 2025-08-25
77
posted: 2025-02-17
88
---
99
import SshBastionMdb from '@macros/databases/ssh-bastion-mdb.mdx'

0 commit comments

Comments
 (0)