I am currently using VB4AWS to test a file-level restore to the original, but the “Restore” button is grayed out.
VB4AWS and the source EC2 instance (Amazon Linux) are in different AWS accounts.
The IAM role assigned to the source EC2 instance was created based on the following documentation.
https://helpcenter.veeam.com/docs/vbaws ... l-location
Of course, the SSM role has been assigned.
When I checked with support, I was told that the trust relationship for the IAM role assigned to the source EC2 instance does not meet Veeam’s requirements for file-level restores to the original location.
I was told that the following must be added:
Code: Select all
"AWS": "arn:aws:iam::<backup-account-id>:role/<VeeamImpersonationRole>"Code: Select all
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
"AWS": "arn:aws:iam::<backup-account-id>:role/<VeeamImpersonationRole>"
}
}
]
}Is a Trust Relationship permission for the VeeamImpersonationRole required?
If so, why is the VeeamImpersonationRole not mentioned on this page?
Kind Regards,
Asahi,
Climb Inc.