-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Amazon SNS Learn more link not work #26
Comments
The link is broken because there's no value being set in the variable used for its URL: https://github.com/opensearch-project/dashboards-notifications/blob/main/public/utils/constants.ts#L6 I would fix it, but I don't know what the correct URL is. In fact, I'm having a lot of difficulty finding documentation anywhere about how to configure Opensearch to use AWS credentials when not running on AWS |
thanks for looking into this, have you looking at this doc for setup permission https://opensearch.org/docs/latest/observing-your-data/notifications/index/#amazon-sns-as-a-channel-type |
@Hailong-am I have seen that document, but I don't quite understand it. Whether you configure the SNS topic to allow anyone to do And I couldn't find where one configures Opensearch with AWS credentials for requests to AWS resources. So either I'm not understanding how this works or there is some documentation missing. |
@markdboyd The default AWSCredentialProvider searching credentials from below locations
|
Just for example of using docker-compose.yml, setup version: '3'
services:
opensearch-node1:
image: opensearchproject/opensearch:latest
container_name: opensearch-node1
environment:
- cluster.name=opensearch-cluster
- node.name=opensearch-node1
- discovery.seed_hosts=opensearch-node1,opensearch-node2
- cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
- AWS_ACCESS_KEY_ID=xxxx
- AWS_SECRET_ACCESS_KEY=xxxxx
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM |
I want to work with this issues |
I want to work on this issue |
What is the bug?
Learn more link does not point to right place
How can one reproduce the bug?
Steps to reproduce the behavior:
What is the expected behavior?
What is your host/environment?
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Add any other context about the problem.
The text was updated successfully, but these errors were encountered: