You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/account/how-to/change-language.mdx
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Switch languages in the Scaleway account interface.
8
8
tags: account language change
9
9
dates:
10
-
validation: 2024-07-29
10
+
validation: 2025-02-11
11
11
posted: 2021-06-22
12
12
categories:
13
13
- console
@@ -20,10 +20,11 @@ You can choose which language you would like to view the [Scaleway console](/acc
20
20
- A [Scaleway account](https://console.scaleway.com)
21
21
22
22
1. Log into the [Scaleway console](https://console.scaleway.com).
23
-
2. Click your Organization name in the top right corner of the console to open the Organization drop-down menu (A), then click the **Profile** button (B). The **User Account** screen displays:
2. Click your Organization name in the top right corner of the console to open the Organization drop-down menu, then click the **Profile** button. The **User Account** screen displays.
25
+
26
+
3. In the User information section, click the **Edit profile** button. The **Edit your account profile** screen displays.
27
+
27
28
4. Choose your preferred language from the drop-down list, then click **Confirm changes**.
28
29
29
30
Your console will now be displayed in your preferred language, which will also be used for all marketing and product communications you receive. You can change your preferred language at any time by repeating this procedure.
1. Click on the name of your Organization in the top-right corner of the console, then select **Support plan**.
24
24
25
-
- Select a plan and click **Select Plan** to proceed. A pop-up displays a disclaimer message informing you that your payment will be made automatically on the current month's invoice. Make sure you have carefully read the message.
2. Select a plan, and click **Select Plan** to proceed. A pop-up displays a disclaimer message informing you that your payment will be made automatically on the current month's invoice.
29
+
30
+
3. Read the message carefully, then click **I understand** to confirm the change.
2. Copy the objects between the Object Storage buckets.
28
+
2. Copy the objects between the Object Storage buckets using the [sync](https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html) command.
29
29
<Messagetype="important">
30
30
If you have objects in the Scaleway `Glacier` storage class you must [restore](/object-storage/how-to/restore-an-object-from-glacier/) them before continuing.
Copy file name to clipboardExpand all lines: pages/object-storage/api-cli/share-buckets-read-only.mdx
+25-14Lines changed: 25 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
meta:
3
3
title: Sharing Object Storage buckets in read-only mode
4
-
description: Share Scaleway Object Storage buckets with read-only access using the CLI.
4
+
description: Share Scaleway Object Storage buckets with read-only access using the AWS CLI.
5
5
content:
6
6
h1: Sharing Object Storage buckets in read-only mode
7
-
paragraph: Share Scaleway Object Storage buckets with read-only access using the CLI.
8
-
tags: object storage bucket read only read-only
7
+
paragraph: Share Scaleway Object Storage buckets with read-only access using the AWS CLI.
8
+
tags: object storage bucket read only read-only aws cli
9
9
dates:
10
-
validation: 2024-07-29
10
+
validation: 2025-02-11
11
11
posted: 2021-05-19
12
12
---
13
13
@@ -21,9 +21,9 @@ dates:
21
21
- Installed the [AWS CLI](/object-storage/api-cli/object-storage-aws-cli/)
22
22
- An [Object Storage bucket](/object-storage/how-to/create-a-bucket/)
23
23
24
-
25
24
You can implement a [bucket policy](/object-storage/api-cli/bucket-policy/) to grant a Scaleway Organization or Project **Read** rights to a bucket in a different Project.
For example, you are logged in to Organization A and you have a bucket (A1) inside Project A. You wish to share the bucket in read-only mode with users in Organization B, Project B.
29
29
@@ -33,9 +33,15 @@ To guarantee that they can only view contents, include `"s3:ListBucket"` and `"s
33
33
34
34
Specify which resources they can access under **Resource**:
35
35
36
-
-`"<BUCKET_NAME>"` - Grants access to the bucket, but not to the objects inside. If the `s3:ListBucket` action is applied, this resource specification is required.
37
-
-`"<BUCKET_NAME>/*"` - Grants access to all objects inside a bucket, but not to the bucket itself. If the `s3:GetObject` action is applied, this resource specification is required.
38
-
-`"<BUCKET_NAME>/<PREFIX>/*"` - Grants access only to objects with the specified prefix inside a bucket, but not to the bucket itself. For example, if you apply a bucket policy that specifies `"my_files/movie/*"` under **Resource**, you would grant access to all objects with the `movie/` prefix, but not to other objects in `my_files/` bucket. If the `s3:GetObject` action is applied, this resource specification is required.
36
+
-`"<BUCKET_NAME>"`: Grants access to the bucket, but not to the objects inside. If the `s3:ListBucket` action is applied, this resource specification is required.
37
+
38
+
-`"<BUCKET_NAME>/*"`: Grants access to all objects inside a bucket, but not to the bucket itself. If the `s3:GetObject` action is applied, this resource specification is required.
39
+
40
+
-`"<BUCKET_NAME>/<PREFIX>/*"`: Grants access only to objects with the specified prefix inside a bucket, but not to the bucket itself. For example, if you apply a bucket policy that specifies `"my_files/movie/*"` under **Resource**, you would grant access to all objects with the `movie/` prefix, but not to other objects in `my_files/` bucket. If the `s3:GetObject` action is applied, this resource specification is required.
41
+
42
+
## Creating the bucket policy
43
+
44
+
1. Create a file named `bucket-policy.json` and add the following code to it:
39
45
40
46
```json
41
47
{
@@ -60,9 +66,14 @@ Specify which resources they can access under **Resource**:
60
66
]
61
67
}
62
68
```
63
-
Apply the policy using the [PutBucketPolicy](/object-storage/api-cli/bucket-operations/#putbucketpolicy) API call or run the following aws-cli command:
You can provide the user in Organization B with the name of your bucket. If the policy is correctly applied, they will be able to see bucket A1 included in their bucket list when running `List_Buckets`. If they know the name of an object, they can view their details by running [`Get_Object`](/object-storage/api-cli/object-operations/#getobject).
70
+
2. Apply the policy using the [PutBucketPolicy](/object-storage/api-cli/bucket-operations/#putbucketpolicy) API call or run the following aws-cli command:
Refer to the [dedicated documentation](/object-storage/api-cli/create-bucket-policy/) for more information on how to create bucket policies.
77
+
</Message>
78
+
79
+
You can now provide the user in Organization B with the name of your bucket. If the policy is correctly applied, they will be able to see bucket A1 included in their bucket list when running `List_Buckets`. If they know the name of an object, they can view their details by running [`Get_Object`](/object-storage/api-cli/object-operations/#getobject).
Copy file name to clipboardExpand all lines: pages/object-storage/reference-content/cname-record.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Learn how to set up and manage CNAME records for Scaleway Edge Services pipelines. Follow our detailed guide to configure your custom domain and enhance your cloud accessibility.
Copy file name to clipboardExpand all lines: pages/object-storage/reference-content/ssl-tls-certificate.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Discover how to configure SSL/TLS certificates for Scaleway Edge Services pipelines. Follow our comprehensive guide to secure your custom domains and ensure data protection.
0 commit comments