{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"AWS": [
"arn:aws:iam::1234:role/role1",
"arn:aws:iam::1235:role/role2",
"arn:aws:iam::1236:role/role3",
"arn:aws:iam::1237:role/role4"
]
},
"Action": "sts:AssumeRole"
}
]
}
I attempted to implement the code using Arnprinciple, but it seems to only accept one role at a time. I need to associate multiple roles (all 4) simultaneously. Any assistance would be appreciated.