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/storage_and_backup/object_storage/s3_identity_and_access_management/guide.en-gb.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Object Storage - Identity and access management
3
3
excerpt: The purpose of this guide is to show you how to manage your identities and access your Object Storage resources
4
-
updated: 2025-03-21
4
+
updated: 2025-07-11
5
5
---
6
6
7
7
## Objective
@@ -120,6 +120,24 @@ Some examples of JSON configuration files:
120
120
}
121
121
```
122
122
123
+
**Deny listing of all buckets owned by the parent account**
124
+
125
+
> [!primary]
126
+
>
127
+
> The (`s3:ListAllMyBuckets`) action is allowed by default for a given user. Add the `deny`{.action} effect if you want to explictly refuse the use of the `ListBuckets`{.action} API operation.
128
+
>
129
+
130
+
```json
131
+
{
132
+
"Statement":[{
133
+
"Sid": "DenyListBucket",
134
+
"Effect": "Deny",
135
+
"Action":["s3:ListAllMyBuckets"],
136
+
"Resource":["*"]
137
+
}]
138
+
}
139
+
```
140
+
123
141
**Allow all operations on all project resources**
124
142
125
143
```json
@@ -176,6 +194,7 @@ Some examples of JSON configuration files:
Copy file name to clipboardExpand all lines: pages/storage_and_backup/object_storage/s3_identity_and_access_management/guide.fr-fr.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Object Storage - Gestion des identités et des accès
3
3
excerpt: Ce guide a pour objectif de vous montrer la gestion de vos identités et accès à vos ressources Object Storage
4
-
updated: 2025-03-21
4
+
updated: 2025-07-11
5
5
---
6
6
7
7
## Objectif
@@ -120,6 +120,24 @@ Quelques exemples de fichiers de configuration JSON :
120
120
}
121
121
```
122
122
123
+
**Refuser l'affichage de tous les buckets appartenant au compte.**
124
+
125
+
> [!primary]
126
+
>
127
+
> L'action (`s3:ListAllMyBuckets`) est autorisée par défaut pour un utilisateur donné. Ajouter explicitement un `deny`{.action} si vous souhaitez refuser l'utilisation de l'opération d'API `ListBuckets`{.action}.
128
+
>
129
+
130
+
```json
131
+
{
132
+
"Statement":[{
133
+
"Sid": "DenyListBucket",
134
+
"Effect": "Deny",
135
+
"Action":["s3:ListAllMyBuckets"],
136
+
"Resource":["*"]
137
+
}]
138
+
}
139
+
```
140
+
123
141
**Autoriser toutes les opérations sur toutes les ressources d'un projet**
124
142
125
143
```json
@@ -176,6 +194,7 @@ Quelques exemples de fichiers de configuration JSON :
0 commit comments