1 Answer
- Newest
- Most votes
- Most comments
0
Hello,
The issue you're encountering is an attempt by a user with the ARN arn:aws:sts::359152731188:assumed-role/******/***********to perform the ListApplications action on the AWS Service Catalog but facing permission problems. This could arises due to missing or insufficient permissions in the associated IAM policy.
Here’s an example IAM policy that grants the necessary permissions:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "servicecatalog:ListApplications",
"Resource": "arn:aws:servicecatalog:eu-central-1:359152731188:/applications/*"
}
]
}
By ensuring that the IAM role has the necessary permissions to perform the servicecatalog:ListApplications action on the specified resources, you should be able to resolve the error.
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 2 years ago
