Skip to content

No permission for service catalog

0

Hello Team,

How do I resolve this:

User: arn:aws:sts::359152731188:assumed-role/*****/******* Service: servicecatalog Action: ListApplications On resource(s): arn:aws:servicecatalog:eu-central-1:359152731188:/applications/*

1 Answer
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.

EXPERT
answered 2 years ago
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.