Setting Up Assume Role on Analytics Database - Analytics Database - Teradata Vantage

Teradata Vantage™ - Native Object Store Getting Started Guide - 17.20

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
Language
English (United States)
Last Update
2024-04-05
dita:mapPath
tsq1628112323282.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
jjn1567647976698
Product Category
Teradata Vantage
The following is required to complete these steps:
  • ARN obtained from creating the IAM on AWS
  • Vantage Site ID obtained from your Teradata account team.
  1. First, complete the steps in Setting Up Assume Role on AWS.
  2. On Analytics Database create an authorization object for access to the external object storage or ask your administrator to create it. For example:
    CREATE AUTHORIZATION AUTH_S3
    USING
    AUTHSERVICETYPE 'ASSUME_ROLE'
    ROLENAME 'arn:aws:iam::915556001112:role/teradata_role'
    EXTERNALID '915556001112';
    Where:
    • ROLENAME contains the ARN obtained from creating the IAM on AWS.
    • EXTERNALID is your Vantage Site ID.

    For more examples creating authorization objects, see CREATE AUTHORIZATION in Teradata Vantage™ - SQL Data Definition Language Syntax and Examples, B035-1144..

  3. Access the external object storage using READ_NOS, WRITE_NOS, or a foreign table. For example, the following query selects data from the S3 bucket using READ_NOS:
    SELECT * FROM (
      LOCATION = '/s3/sts-test.s3.amazonaws.com/csv_default.csv'
      AUTHORIZATION = S3_auth) as dt;