Following are a few examples of common use cases and their corresponding bucket policy configurations.
Grant full control of the bucket to other users
To grant full control over a contract-owned bucket or a user-owned bucket and its objects to other IONOS Object Storage users:
Contract-owned Buckets User-owned Buckets
Copy {
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "Grant Full Control" ,
"Effect" : "Allow" ,
"Principal" : {
"AWS" : [
"arn:aws:iam:::user/CONTRACT_USER_ID1" ,
"arn:aws:iam:::user/CONTRACT_USER_ID2"
]
},
"Action" : "s3:*" ,
"Resource" : [
"arn:aws:s3:::my-bucket" ,
"arn:aws:s3:::my-bucket/*"
]
}
]
}
Copy {
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "Grant Full Control" ,
"Effect" : "Allow" ,
"Principal" : {
"CanonicalUser" : [ "CANONICAL_USER_ID_1" , "CANONICAL_USER_ID_2" ]
},
"Action" : "s3:*" ,
"Resource" : [
"arn:aws:s3:::my-bucket" ,
"arn:aws:s3:::my-bucket/*"
]
}
]
}
Grant read-only access to a specific prefix
Contract-owned Buckets User-owned Buckets
To grant read-only access to objects within a specific prefix of a contract-owned bucket to other IONOS Object Storage users:
Copy {
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "GrantReadOnlyAccessToPrefix" ,
"Effect" : "Allow" ,
"Principal" : {
"AWS" : [
"arn:aws:iam:::user/CONTRACT_USER_ID1" ,
"arn:aws:iam:::user/CONTRACT_USER_ID2"
]
},
"Action" : [
"s3:GetObject" ,
"s3:ListBucket"
],
"Resource" : [
"arn:aws:s3:::my-bucket/prefix/*" ,
"arn:aws:s3:::my-bucket"
],
"Condition" : {
"StringLike" : {
"s3:prefix" : [
"prefix/*"
]
}
}
}
]
}
To grant read-only access to objects within a specific prefix of a user-owned bucket to other IONOS S3 Object Storage users:
Copy {
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "GrantReadOnlyAccessToPrefix" ,
"Effect" : "Allow" ,
"Principal" : {
"CanonicalUser" : [ "CANONICAL_USER_ID_1" , "CANONICAL_USER_ID_2" ]
},
"Action" : [
"s3:GetObject" ,
"s3:ListBucket"
],
"Resource" : [
"arn:aws:s3:::my-bucket/prefix/*" ,
"arn:aws:s3:::my-bucket"
],
"Condition" : {
"StringLike" : {
"s3:prefix" : [
"prefix/*"
]
}
}
}
]
}
To allow read access to certain objects within a contract-owned bucket or a user-owned bucket while keeping other objects private:
Copy {
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "PublicRead" ,
"Effect" : "Allow" ,
"Principal" : "*" ,
"Action" : "s3:GetObject" ,
"Resource" : "arn:aws:s3:::example-bucket/public/*"
}
]
}
Restrict access to specific IP addresses
To restrict all users from performing any S3 operations within the designated bucket type, unless the request is initiated from the specified range of IP addresses:
Copy {
"Id" : "SourceIp" ,
"Version" : "2012-10-17" ,
"Statement" : [
{
"Sid" : "SourceIp" ,
"Effect" : "Deny" ,
"Principal" : "*" ,
"Action" : "s3:*" ,
"Resource" : [
"arn:aws:s3:::my-bucket" ,
"arn:aws:s3:::my-bucket/*"
],
"Condition" : {
"NotIpAddress" : {
"aws:SourceIp" : [
"123.123.123.0/24"
]
}
}
}
]
}