...
Instructions on how to create the AWS ARN and external ID are available in the following article at Cloud Integration: On-board AWS. follow.
Setting up an AWS environment for onboarding
Creating the AWS policy
Sign in to the AWS Management Console by clicking here
The link will take you to create policy page
Select the JSON tab in the policy editor and paste the following policy (overwriting the existing items):
Code Block |
---|
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Resource": "*",
"Action": [
"apigateway:GET"
]
}
]
}
|
Select Review policy, and enter the name below:
DataTheorem-APIGateway-SecurityAudit
Select Create policy
Creating the AWS role
Navigate to Create Role page on AWS by clicking here
The link will pre-fill Data Theorem's account ID
You need to fill the External ID field by generating a random password. We suggest one of the following:
Generate from terminal:
openssl rand -base64 32
Keep the External ID somewhere temporarily as you will need it later.
Ensure the field Account ID and External ID are filled
Select Next: Permissions
Enter
SecurityAudit
in the search box and then select its checkboxErase the search box, and enter
DataTheorem-APIGateway-SecurityAudit
. Select its checkboxSelect Next: Review and enter the following for the name:
DataTheorem-Service
Ensure it has the two SecurityAudit and DataTheorem-APIGateway-SecurityAudit policies enabled
Select Create role
Select on the newly created role
DataTheorem-Service
Copy the Role ARN value on the top of the page and keep it somewhere temporarily as you will need it later
Onboarding an AWS environment via API
...