Tejas Rajopadhye

Results 65 comments of Tejas Rajopadhye

Hi @noah-paige , Thanks for the taking a look at this issue. I was actually talking about the latter. I know that for share-manager an alert is raised if something...

Thanks @noah-paige for that information. Let me check our SNS topic containing alarmsTopic and configure to receive emails. Do you know if this can be easily done ? Do you...

Will be contributed as a part of - https://github.com/data-dot-all/dataall/issues/1420#issuecomment-2552403340

Hi @SofiaSazonova , thanks for pointing to this issue. Although that issue is specifically towards the share manager, I will add a comments and reference this issue. Please let me...

Code ```python import boto3 def check_service_quota(): service_quota_client = boto3.client('service-quotas') paginator = service_quota_client.get_paginator('list_services') response = service_quota_client.list_services(MaxResults=100) services = [] services.append(response['Services']) while response.get('NextToken'): response = service_quota_client.list_services(NextToken=response.get('NextToken'), MaxResults=100) services.append(response['Services']) # for page in...

Hi @adev-code , I think I figured why I was not able to get the iam code. The reason was becoz I was aws config has eu-west-1 as the region....

Another small issue - Currently if the share is with a consumption role then the email notification body text contains something like - **share request for dataset for principal ggief66q**....

## Proposal Summarizing the notifications improvements which need to be made 1. Send notifications ( both UI and email ) when a share fails 2. Send notification ( both UI...

@dlpzx , @noah-paige , do you know why we converted notifications from core to modules ? I wanted to add admin notifications for stacks but I noticed that notifications is...

This is handled by starting a re-indexer task from the Admin Menu