Amazon Redshift Connectors > Part III: Data Integration with Amazon Redshift Connector > Introduction to Amazon Redshift Connector > Administration of Amazon Redshift Connector
  

Administration of Amazon Redshift Connector

As a user, you can use Amazon Redshift Connector after the organization administrator ensures that users have access to the Secure Agent directory that contains the success and error files. This directory path must be the same on each Secure Agent machine in the runtime environment. The organization administrator must also perform the following tasks:

Configure Amazon Redshift Connector for SSL

To use SSL to connect to Amazon Redshift, you need to configure the Secure Agent for SSL and enable SSL through the JDBC URL in the Amazon Redshift connection properties.
    1Download the SSL certificate for Amazon Redshift.
    2To add the certificate file to the key store, run the following command in the command prompt:
    ${JAVA_HOME}/bin/keytool –keystore {JAVA_HOME}/lib/security/cacerts -import -alias <alias_name> -file <certificate_filepath>
    When prompted, enter the keystore password.
    3Log in to your Informatica Intelligent Cloud Services account.
    4In Administrator, click Runtime Environments.
    5Select the Secure Agent and click Edit Secure Agent in the Actions menu.
    6In the System Configuration Details section, configure the following properties:
    1. aSelect the Service as Data Integration Server.
    2. bSelect the Type as DTM.
    3. cClick the Edit Agent Configuration icon next to JVMOption1 and add the following value:
    4. -Djavax.net.ssl.trustStore=<trustore_path>
    5. dClick the Edit Agent Configuration icon next to JVMOption2 and add the following command:
    6. -Djavax.net.ssl.trustStorePassword=<password>
      Specify the same password you used when importing the certificate in step 2.
    7Click Save.
    8In Administrator, click Connections.
    9Edit your Amazon Redshift connection and add the following parameter to the JDBC URL: ssl=true.
    For example, jdbc:redshift://mycluster.xyz789.us-west- 2.redshift.amazonaws.com:5439/dev?ssl=true.
    10Click Save.

Create a minimal Amazon IAM policy

Create an Amazon IAM policy and define the required permissions to stage the data in Amazon S3 when you want to read data from and write data to Amazon Redshift.
Use the following minimum required permissions to stage the data in Amazon S3:
You can use the following sample Amazon IAM policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject",
"s3:ListBucket",
"s3:GetBucketPolicy"
],
"Resource": [
"arn:aws:s3:::<bucket_name>/*",
"arn:aws:s3:::<bucket_name>"
]
}
]
}
You must make sure that the Amazon S3 bucket and Amazon Redshift cluster reside in the same region to run a session successfully.
The supported regions are:

IAM authentication

Optional. You can configure IAM authentication when on an Amazon Elastic Compute Cloud (EC2) system. Use IAM authentication for secure and controlled access to Amazon Redshift resources when you run
Use IAM authentication when you want to run a on an EC2 system. Perform the following steps to configure IAM authentication:
  1. 1Create a minimal Amazon IAM policy. For more information, see Create a minimal Amazon IAM policy.
  2. 2Create the Amazon EC2 role. Associate the minimal Amazon IAM policy while creating the EC2 role. The Amazon EC2 role is used when you create an EC2 system in the Redshift cluster. For more information about creating the Amazon EC2 role, see the AWS documentation.
  3. 3Create an EC2 instance. Assign the Amazon EC2 role that you created in step #2 to the EC2 instance.
  4. 4Create the Amazon Redshift Role ARN for secure access to Amazon Redshift resources. Associate the minimal Amazon IAM policy while creating the Amazon Redshift role. You can use the Amazon Redshift Role ARN in the UNLOAD and COPY commands. For more information about creating the Amazon Redshift Role ARN, see the AWS documentation.
  5. 5Add the Amazon Redshift Role ARN to the Amazon Redshift cluster to successfully perform the read and write operations. For more information about adding the Amazon Redshift Role ARN to the Amazon Redshift cluster, see the AWS documentation.
  6. 6Install the on the EC2 system.