Skip to content

AWS openSearch serverless: Link to openSearch dashboard doest not work. No logs so i cant debug

0

here the full behavior:

[https://youtu.be/5nyW-jnU5wg](YOUTUBE video)

Current problem that I have is thart when i create a collection in AWS OpenSearch serverless, i cannot accesss to the dashboard. You can see the behavior in the youtube video I posted above

2 Answers
0

Hello Arturo,

The issue may be because of the data access policy you have in your video. I see that for the selected principal you listed an aws-service-role instead of your IAM user/role. Try adding another principal that has your IAM user/role so that when you click on the OpenSearch dashboards URL from your console, you will be able to access OpenSearch dashboards.

I attached more information about Data access policies here: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html

Let me know if that works or if you have anymore questions!

Best,

Michael Torio

AWS
EXPERT
answered 2 years ago
0

hello. I just faced same issue. I tried to create every region, every type of collections, but there is no way to get in serverless dashboard. It still gives infinite loading. my IAM policy is below. { "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", "Effect": "Allow", "Action": [ "aoss:CreateCollection", "aoss:ListCollections", "aoss:BatchGetCollection", "aoss:DeleteCollection", "aoss:CreateAccessPolicy", "aoss:ListAccessPolicies", "aoss:UpdateAccessPolicy", "aoss:CreateSecurityPolicy", "aoss:GetSecurityPolicy", "aoss:UpdateSecurityPolicy", "iam:ListUsers", "iam:ListRoles" ], "Resource": [ "*" ] } ] }

answered a year 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.