How Can We Help?

Search for answers or browse our knowledge base.

Documentation | Demos | Support

On this page
Print / Download as PDF

Data Access and Integration Guide

Table of Contents

Overview

This document outlines the general policy for granting Intuizi access to client and partner data. It covers various data storage and transfer methods, with a focus on maintaining security and efficiency in data operations.

General Access Requirements

  • Intuizi requires read and write access to specified data storage locations.
  • Access should be granted only to designated Intuizi service accounts or users.
  • Data access must comply with all relevant data protection regulations and client agreements.
  • Regular audits of access logs are recommended to ensure security.

Supported Data Storage Platforms

Intuizi supports integration with various data storage platforms, including but not limited to:

  • Amazon Web Services (AWS) S3
  • Google Cloud Storage
  • Microsoft Azure Blob Storage
  • FTP/SFTP servers
  • Direct database connections (e.g., MySQL, PostgreSQL)

AWS S3 Bucket Policy

Policy Configuration

				
					{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "intuiziaccess",
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::128297264883:user/service-data-delivery"
            },
            "Action": [
                "s3:ListBucket",
                "s3:GetObject",
                "s3:PutObject",
                "s3:DeleteObject"
            ],
            "Resource": [
                "arn:aws:s3:::example_bucket",
                "arn:aws:s3:::example_bucket/*"
            ]
        }
    ]
}
				
			

Applying the Policy via AWS Management Console

  1. Sign in to the AWS Management Console.
  2. Navigate to the S3 service.
  3. Locate and click on your bucket name in the list of buckets.
  4. Click on the “Permissions” tab.
  5. Scroll down to the “Bucket policy” section and click “Edit”.
  6. In the policy editor, paste the JSON policy provided above.
  7. Replace YOUR_BUCKET_NAME with your actual S3 bucket name in both resource lines.
  8. Click “Save changes”.

Verifying the Policy

  1. After saving, review the policy in the “Bucket policy” section to ensure it’s correctly applied.
  2. If there are any syntax errors, AWS will highlight them and prevent saving until corrected.

Other Platform-Specific Instructions

For platforms other than AWS S3, please contact Intuizi’s support team for specific access configuration instructions.

Security Considerations

  • Grant access only to the specific resources required for Intuizi’s operations.
  • Use strong authentication methods (e.g., IAM roles, service accounts) when possible.
  • Regularly rotate access keys and review permissions.
  • Enable logging and monitoring on all platforms to track data access and modifications.

 Troubleshooting

  • For AWS S3: If you encounter a “Policy has invalid resource” error, double-check that you’ve correctly replaced YOUR_BUCKET_NAME with your actual bucket name.
  • For “Access Denied” errors after applying any policy, verify that the resource names and Intuizi’s access identifiers are correct.
 
Further Assistance and Support

Note: For further assistance with implementing this policy, additional support, or any questions regarding data access, please contact your designated Intuizi account manager or sales representative.

Was this article helpful?
0 out of 5 stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
Please Share Your Feedback
How Can We Improve This Article?