Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(gen): content review MTA-5416 #4222

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions console/account/how-to/enforce-mfa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ content:
paragraph: Enable and enforce Multi-Factor Authentication (MFA).
tags: authentication 2FA two-factor two multi factor security google authenticator authenticator mfa
dates:
validation: 2024-07-02
validation: 2025-01-15
posted: 2023-06-12
categories:
- console
---

Multifactor Authentication (MFA) adds an extra layer of security to your Organization. Enforcing MFA will make it mandatory
for all users in the Organization.
[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.

<Macro id="requirements" />

Expand All @@ -29,13 +28,13 @@ for all users in the Organization.
4. Click **Enforce MFA**.
5. Type **ENFORCE** in the box.
<Message type="important">
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 />
You can only enforce MFA if all users in your Organization have already set up MFA on their accounts.
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 />
You can only enforce MFA if all users in your Organization have already set up MFA on their accounts.
</Message>
6. Click **Enforce MFA**.
If 100% of users in your Organization already have MFA enabled, a confirmation message appears on the top right corner of the screen.
- If all users in your Organization already have MFA enabled, a confirmation message appears on the top right corner of the screen.

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).
- 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).

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

## How to stop enforcing MFA

Expand Down
4 changes: 2 additions & 2 deletions console/account/how-to/use-2fa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Enable and use Two-Factor Authentication (2FA) in Scaleway.
tags: authentication 2FA two-factor two multi factor security google authenticator authenticator
dates:
validation: 2024-07-02
validation: 2025-01-15
posted: 2022-01-14
categories:
- console
Expand All @@ -23,7 +23,7 @@ Multifactor authentication provides extra layers of security. In addition to you

## How to download an MFA app

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:
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:
- [Authy](https://authy.com/download/)
- [FreeOTP](https://freeotp.github.io/)
- [Google Authenticator](https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&hl=en&gl=US)
Expand Down
18 changes: 9 additions & 9 deletions macros/serverless/cron-schedules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ Adding a cron schedule to a specific task allows you to run it automatically at
Cron jobs are expressed using the `* * * * *` format, which corresponds to the fields below.

```
# ┌───────────── minute
# │ ┌───────────── hour
# │ │ ┌───────────── day of the month
# │ │ │ ┌───────────── month
# │ │ │ │ ┌───────────── day of the week
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
┌───────────── minute
│ ┌───────────── hour
│ │ ┌───────────── day of the month
│ │ │ ┌───────────── month
│ │ │ │ ┌───────────── day of the week
│ │ │ │ │
│ │ │ │ │
│ │ │ │ │
* * * * *
```

Each field supports a specific range of values.
Expand Down
8 changes: 4 additions & 4 deletions macros/serverless/difference-jobs-functions-containers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ macro: difference-jobs-functions-containers
| **Scaling** | Automatically scales based on incoming events | Automatically scales based on incoming events | Manually specified number of job executions |
| **Maximum execution time** | Up to 15 minutes per request | Up to 15 minutes per request | 24 hours |
| **Concurrency** | Single request per instance | Configurable concurrency per instance | Not applicable |
| **Pricing model** | Pay based on execution time and invocations | Pay based on vCPU and memory usage | Pay based on vCPU and memory usage |
| **Pricing model** | Pay based on execution time and invocations | Pay based on vCPU and memory usage | Pay based on vCPU and memory usage |
| **Triggers** | HTTP requests, scheduled (CRONs), messaging events (NATS, SQS, SNS) | HTTP requests, scheduled (CRONs), messaging events (NATS, SQS, SNS) | Manual invocation or scheduled |
| **Language support** | Node, PHP, Python, Go, Rust | Any language/runtime within a container | Any language/runtime within a container |
| **Infrastructure management** | Fully managed, handles provisioning and scaling automatically | Fully managed, handles provisioning and scaling automatically | Fully managed, abstracts away infrastructure management |
| **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) |
| **Infrastructure management** | Fully managed, handles provisioning and scaling automatically | Fully managed, handles provisioning and scaling automatically | Fully managed, abstracts away infrastructure management |
| **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) |
| **Supports custom containers** | No, deploy code in supported languages only | Yes, deploy any containerized application | Yes, deploy any containerized application |
| **Long-running processes** | Not suitable for long running tasks | Not suitable for long running tasks | Ideal for long running processes |
| **Networking** | No VPC support at the moment | No VPC support at the moment | No VPC support at the moment |
| **Secret manager integration** | Only via local secrets | Only via local secrets | Yes |
| **Customisable ephemeral storage** | Yes | Yes | Yes |
| **Customizable ephemeral storage** | Yes | Yes | Yes |
| **Scaling from and to zero** | Yes | Yes | Not applicable |

## Details
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Understand billing for Scaleway Serverless Containers.
tags: containers serverless serverless-containers billing serverless-billing serverless-containers-billing
dates:
validation: 2024-07-02
validation: 2025-01-15
posted: 2023-06-15
categories:
- serverless
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Differences between jobs, functions, and containers in Scaleway.
tags: job container functions differences vs docker image
dates:
validation: 2024-07-02
validation: 2025-01-15
posted: 2023-12-08
categories:
- serverless
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Understand the differences between jobs, functions, and containers in Scaleway's serverless platform.
tags: job container functions differences vs docker image
dates:
validation: 2024-08-05
validation: 2025-01-15
posted: 2024-07-02
categories:
- serverless
Expand Down
2 changes: 1 addition & 1 deletion serverless/jobs/reference-content/cron-schedules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Setting up cron schedules in Scaleway Serverless Jobs.
tags: serverless jobs cron crontab schedule cronjob
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2023-12-12
categories:
- serverless
Expand Down
2 changes: 1 addition & 1 deletion serverless/jobs/reference-content/deploy-job.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ content:
h1: Methods to deploy Serverless Jobs
paragraph: How to deploy a job in Scaleway Serverless Jobs.
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2023-12-20
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Understand differences between jobs, functions, and containers in Scaleway.
tags: job container functions differences vs docker image
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2023-11-13
categories:
- serverless
Expand Down
4 changes: 1 addition & 3 deletions serverless/sql-databases/how-to/manage-backups.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Instructions for managing backups in Scaleway serverless SQL databases.
tags: sql-databases serverless database backup snapshot restore
dates:
validation: 2024-07-02
validation: 2025-01-15
posted: 2023-12-05
categories:
- serverless
Expand Down Expand Up @@ -69,5 +69,3 @@ Serverless SQL Databases are automatically backed up every day at the same time.
<Message type="tip">
You can restore the downloaded backup using the [pg_restore](https://www.postgresql.org/docs/current/app-pgrestore.html) utility.
</Message>


2 changes: 1 addition & 1 deletion storage/object/how-to/delete-an-object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Learn how to delete objects from Object Storage buckets.
tags: object storage object-storage
dates:
validation: 2024-07-03
validation: 2025-10-15
posted: 2021-05-27
categories:
- storage
Expand Down
3 changes: 1 addition & 2 deletions storage/object/how-to/download-files-from-a-bucket.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Download files stored in Scaleway Object Storage buckets.
tags: download bucket object-storage object storage
dates:
validation: 2024-07-04
validation: 2025-01-15
posted: 2021-05-27
categories:
- storage
Expand All @@ -21,7 +21,6 @@ categories:
- An [Object Storage bucket](/storage/object/how-to/create-a-bucket/)
- An object in your [bucket](/storage/object/how-to/upload-files-into-a-bucket/)


1. Click **Object Storage** in the **Storage** section of the side menu. The list of your buckets displays.
2. Click the name of your selected bucket in the buckets list. A list of your objects displays.
3. Click <Icon name="download" /> next to the desired object to start the download to your local file system.
4 changes: 1 addition & 3 deletions storage/object/how-to/monitor-consumption.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Monitor your Object Storage resource consumption.
tags: bandwidth consumption metrics logs object storage cockpit
dates:
validation: 2024-06-13
validation: 2025-01-15
posted: 2020-10-09
categories:
- storage
Expand Down Expand Up @@ -51,5 +51,3 @@ To view your Object Storage metrics and logs, use the Grafana dashboard, which i
<Message type="note">
Your Object Storage metrics and logs dashboards are also accessible from the console via the **Metrics** and **Logs** tabs of a bucket.
</Message>


Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Configure and use Object Storage with Private Networks.
tags: object storage private-networks private network
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2021-05-27
categories:
- storage
Expand Down Expand Up @@ -79,5 +79,3 @@ You must create an Instance without a flexible IP using the following specificat
## Conclusion

You have now configured an Instance with a Private Network to communicate with Scaleway's Object Storage platform using a Public Gateways. The gateway ensures the exchange of data between your Private Network and the public Internet.


2 changes: 1 addition & 1 deletion storage/object/troubleshooting/api-key-does-not-work.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Fix issues with non-functional API keys in Object Storage.
tags: api key bucket object storage aws cli
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2023-12-15
categories:
- storage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ content:
paragraph: Regain access to buckets lost due to policy issues.
tags: help troubleshooting bucket access lose policy principal
dates:
validation: 2024-07-03
validation: 2025-01-15
posted: 2023-12-15
categories:
- storage
Expand Down Expand Up @@ -84,4 +84,3 @@ If you have the permission to apply a bucket policy, you can also delete it. To
- User-agent (SDK, client, console, etc.)
- Transaction ID (if possible)
- Log / trace of the error (if possible)

Loading