Cloud storage (S3, GCP)
Authentication
AWS
IAM User Access Key
Role-based access
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::760292141147:role/EC2_Instance_Perms"
},
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::your-bucket-name/*"
}
]
}GCP
Data Structure

Last updated
Was this helpful?