Create a trust relationship between DPH service user and AWS assume role
Learn how to create a trust relationship between Data Pipeline Hub service user and AWS assume role.
dph-service-role-
then you need to create a trust relationship between the Data Pipeline Hub (DPH) service user and your AWS assume role. For more information, see Using trust policies with IAM roles.{
"Version": "2025-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::000000000000:user/reltio.platform.prod.dph.service"
},
"Action": "sts:AssumeRole",
"Condition": {
"StringEquals": {
"sts:ExternalId": "<externalId>"
}
}
}
]
}