This repository contains standalone extensions for CE.
To run the projects locally using your personal AWS account, follow the steps below to assume the PaladinCloudIntegrationRole
in the SaaS AWS account.
Get your AWS Account ARN
aws sts get-caller-identity
This will return your account details, including the ARN you’ll need for the next steps.
Modify the Trust Policy in the SaaS Account
PaladinCloudIntegrationRole
.Statement
array, add the following entry, replacing <your personal account arn>
with the ARN you retrieved earlier:
{
"Effect": "Allow",
"Principal": {
"AWS": "<your personal account arn goes here>"
},
"Action": "sts:AssumeRole"
}
Run the Project Locally
PaladinCloudIntegrationRole
in the SaaS account using your personal AWS account.