Hello, I have an issue with creating a service lin...
# general
b
Hello, I have an issue with creating a service linked role in IAM as part of my deployment. I have RDS instance in my deployment, and I add for it the following in my iam.ts :
Copy code
new aws.iam.ServiceLinkedRole("analyticsdb", {
    awsServiceName: "<http://rds.amazonaws.com|rds.amazonaws.com>",
})
Everything is ok as long as this is the first (or only) deployment in the specific AWS account, but if I do few deployments on the same account all deployments after the first one will fail, because I cannot have more than one RDS service linked role. How should I solve this kind of issue?