Skip to content

Commit 941e2d9

Browse files
chore(gen): content review MTA-5416 (#4222)
* chore(gen): content review MTA-5416 * chore(gen): content review
1 parent c6091a8 commit 941e2d9

26 files changed

+77
-125
lines changed

console/account/how-to/enforce-mfa.mdx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ content:
77
paragraph: Enable and enforce Multi-Factor Authentication (MFA).
88
tags: authentication 2FA two-factor two multi factor security google authenticator authenticator mfa
99
dates:
10-
validation: 2024-07-02
10+
validation: 2025-01-15
1111
posted: 2023-06-12
1212
categories:
1313
- console
1414
---
1515

16-
Multifactor Authentication (MFA) adds an extra layer of security to your Organization. Enforcing MFA will make it mandatory
17-
for all users in the Organization.
16+
[Multifactor Authentication (MFA)](/console/account/concepts/#multifactor-authentication-mfa) adds an extra layer of security to your Organization. Enforcing MFA will make it mandatory for all users in the Organization.
1817

1918
<Macro id="requirements" />
2019

@@ -29,13 +28,13 @@ for all users in the Organization.
2928
4. Click **Enforce MFA**.
3029
5. Type **ENFORCE** in the box.
3130
<Message type="important">
32-
Be aware that MFA will become mandatory for all users in the Organization. When you invite users to your Organization in the future, they must have set up MFA to be able to join. <br /><br />
33-
You can only enforce MFA if all users in your Organization have already set up MFA on their accounts.
31+
MFA will become mandatory for all users in the Organization. When you invite users to your Organization in the future, they must have set up MFA to be able to join. <br /><br />
32+
You can only enforce MFA if all users in your Organization have already set up MFA on their accounts.
3433
</Message>
3534
6. Click **Enforce MFA**.
36-
If 100% of users in your Organization already have MFA enabled, a confirmation message appears on the top right corner of the screen.
35+
- If all users in your Organization already have MFA enabled, a confirmation message appears on the top right corner of the screen.
3736

38-
If, however, at least one of the users does not have MFA enabled, you must send them an [MFA reminder](#how-to-send-an-mfa-reminder).
37+
- If at least one of the users does not have MFA enabled, you must send them an [MFA reminder](#how-to-send-an-mfa-reminder).
3938

4039
<Message type="important">
4140
If you invite users who are not yet a part of your Organization, they must enable MFA before joining.
@@ -46,7 +45,7 @@ for all users in the Organization.
4645
1. Click **IAM** in the top right drop-down menu. The IAM dashboard displays.
4746
2. Go to the **Users** tab.
4847
3. Click <Icon name="more" /> > **Send MFA reminder** next to the name of a user that has MFA disabled.
49-
An email is sent to the user requesting that they enable MFA.
48+
The user will receive an email requesting that they enable MFA.
5049

5150
## How to stop enforcing MFA
5251

console/account/how-to/use-2fa.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Enable and use Two-Factor Authentication (2FA) in Scaleway.
88
tags: authentication 2FA two-factor two multi factor security google authenticator authenticator
99
dates:
10-
validation: 2024-07-02
10+
validation: 2025-01-15
1111
posted: 2022-01-14
1212
categories:
1313
- console
@@ -23,7 +23,7 @@ Multifactor authentication provides extra layers of security. In addition to you
2323

2424
## How to download an MFA app
2525

26-
To use multifactor authentication on your account, you first need to download an MFA app onto your smartphone. Once configured, MFA apps display a constantly rotating set of codes to use with your different accounts when you are prompted for one during login. Popular MFA apps include:
26+
To use [multifactor authentication](/console/account/concepts/#multifactor-authentication-mfa) on your account, you first need to download an MFA app onto your smartphone. Once configured, MFA apps display a constantly rotating set of codes to use with your different accounts when you are prompted for one during login. Popular MFA apps include:
2727
- [Authy](https://authy.com/download/)
2828
- [FreeOTP](https://freeotp.github.io/)
2929
- [Google Authenticator](https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en&gl=US)

macros/serverless/cron-schedules.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Adding a cron schedule to a specific task allows you to run it automatically at
99
Cron jobs are expressed using the `* * * * *` format, which corresponds to the fields below.
1010

1111
```
12-
# ┌───────────── minute
13-
# │ ┌───────────── hour
14-
# │ │ ┌───────────── day of the month
15-
# │ │ │ ┌───────────── month
16-
# │ │ │ │ ┌───────────── day of the week
17-
# │ │ │ │ │
18-
# │ │ │ │ │
19-
# │ │ │ │ │
20-
# * * * * *
12+
┌───────────── minute
13+
│ ┌───────────── hour
14+
│ │ ┌───────────── day of the month
15+
│ │ │ ┌───────────── month
16+
│ │ │ │ ┌───────────── day of the week
17+
│ │ │ │ │
18+
│ │ │ │ │
19+
│ │ │ │ │
20+
* * * * *
2121
```
2222

2323
Each field supports a specific range of values.

macros/serverless/difference-jobs-functions-containers.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ macro: difference-jobs-functions-containers
1818
| **Scaling** | Automatically scales based on incoming events | Automatically scales based on incoming events | Manually specified number of job executions |
1919
| **Maximum execution time** | Up to 15 minutes per request | Up to 15 minutes per request | 24 hours |
2020
| **Concurrency** | Single request per instance | Configurable concurrency per instance | Not applicable |
21-
| **Pricing model** | Pay based on execution time and invocations | Pay based on vCPU and memory usage | Pay based on vCPU and memory usage |
21+
| **Pricing model** | Pay based on execution time and invocations | Pay based on vCPU and memory usage | Pay based on vCPU and memory usage |
2222
| **Triggers** | HTTP requests, scheduled (CRONs), messaging events (NATS, SQS, SNS) | HTTP requests, scheduled (CRONs), messaging events (NATS, SQS, SNS) | Manual invocation or scheduled |
2323
| **Language support** | Node, PHP, Python, Go, Rust | Any language/runtime within a container | Any language/runtime within a container |
24-
| **Infrastructure management** | Fully managed, handles provisioning and scaling automatically | Fully managed, handles provisioning and scaling automatically | Fully managed, abstracts away infrastructure management |
25-
| **Cold-starts** | There may be startup latency on new instances | There may be startup latency on new instances | Not applicable (jobs starts when scheduled or invoked) |
24+
| **Infrastructure management** | Fully managed, handles provisioning and scaling automatically | Fully managed, handles provisioning and scaling automatically | Fully managed, abstracts away infrastructure management |
25+
| **Cold-starts** | There may be startup latency on new instances | There may be startup latency on new instances | Not applicable (jobs starts when scheduled or invoked) |
2626
| **Supports custom containers** | No, deploy code in supported languages only | Yes, deploy any containerized application | Yes, deploy any containerized application |
2727
| **Long-running processes** | Not suitable for long running tasks | Not suitable for long running tasks | Ideal for long running processes |
2828
| **Networking** | No VPC support at the moment | No VPC support at the moment | No VPC support at the moment |
2929
| **Secret manager integration** | Only via local secrets | Only via local secrets | Yes |
30-
| **Customisable ephemeral storage** | Yes | Yes | Yes |
30+
| **Customizable ephemeral storage** | Yes | Yes | Yes |
3131
| **Scaling from and to zero** | Yes | Yes | Not applicable |
3232

3333
## Details

serverless/containers/reference-content/containers-billing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Understand billing for Scaleway Serverless Containers.
88
tags: containers serverless serverless-containers billing serverless-billing serverless-containers-billing
99
dates:
10-
validation: 2024-07-02
10+
validation: 2025-01-15
1111
posted: 2023-06-15
1212
categories:
1313
- serverless

serverless/containers/reference-content/difference-jobs-functions-containers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Differences between jobs, functions, and containers in Scaleway.
88
tags: job container functions differences vs docker image
99
dates:
10-
validation: 2024-07-02
10+
validation: 2025-01-15
1111
posted: 2023-12-08
1212
categories:
1313
- serverless

serverless/functions/reference-content/difference-jobs-functions-containers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Understand the differences between jobs, functions, and containers in Scaleway's serverless platform.
88
tags: job container functions differences vs docker image
99
dates:
10-
validation: 2024-08-05
10+
validation: 2025-01-15
1111
posted: 2024-07-02
1212
categories:
1313
- serverless

serverless/jobs/reference-content/cron-schedules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Setting up cron schedules in Scaleway Serverless Jobs.
88
tags: serverless jobs cron crontab schedule cronjob
99
dates:
10-
validation: 2024-07-03
10+
validation: 2025-01-15
1111
posted: 2023-12-12
1212
categories:
1313
- serverless

serverless/jobs/reference-content/deploy-job.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ content:
66
h1: Methods to deploy Serverless Jobs
77
paragraph: How to deploy a job in Scaleway Serverless Jobs.
88
dates:
9-
validation: 2024-07-03
9+
validation: 2025-01-15
1010
posted: 2023-12-20
1111
---
1212

serverless/jobs/reference-content/difference-jobs-functions-containers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: Understand differences between jobs, functions, and containers in Scaleway.
88
tags: job container functions differences vs docker image
99
dates:
10-
validation: 2024-07-03
10+
validation: 2025-01-15
1111
posted: 2023-11-13
1212
categories:
1313
- serverless

0 commit comments

Comments
 (0)