Permissions

IAM roles and permission

To use Google Cloud Storage as backup storage in the Xopero ONE service it's recommended that the GCS user has the Identity and Access Management (IAM) role of Storage Admin (roles/storage.admin - grants full control of buckets and objects) or create a service account with the minimal permission set:

  • storage.objects.list

  • storage.objects.get

  • storage.objects.create

  • storage.objects.delete

Find more details about permission on Google Cloud Storage official site.

Support for Immutable Storage

If you want to use the Immutable storage, the following permissions are required:

  • s3:GetBucketObjectLockConfiguration - required to read Object Lock

  • configuration.s3:GetBucketVersioning - required to read the versioning configuration.

It must be added to the Action section, and after the changes, the section must look like the below:

"Action": [
                    "s3:ListBucket",
                    "s3:GetObject",
                    "s3:PutObject",
                    "s3:DeleteObject",
		    "s3:GetBucketVersioning",
	            "s3:GetBucketObjectLockConfiguration"
               ],

More details about how to create or edit a bucket policy available on Google Cloud Storage documentation: Adding a bucket policy

Last updated