我正在将资源从一个AWS账户转移到另一个账户,我需要移动一个数据库。我正在尝试使用本机数据库备份,但它似乎无法正常工作。
我配置了IAM角色,RDS db在选项组中具有本机备份功能。
这是我在数据库中运行rds_backup_database后得到的错误:
Aborted the task because of a task failure or an overlap with your preferred backup window
for RDS automated backup.
The S3 bucket location: us-east-1 does not match the RDS instance region: us-west-2.
Please specify a bucket that is in the same region as RDS instance.
很明显,是吗?
问题是我在区域 us-west-2 (or Oregon)
中专门创建了S3 Bucket,但错误保持不变。
我甚至在其他地区创建了多个存储桶,但错误保持不变(使用相同的存储区域)。
我尝试的最后一件事就是编辑政策并尽可能让我宽容:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": "*"
}
]
}
有什么想法吗?