Skip to content

Commit

Permalink
fix: add default admin group email
Browse files Browse the repository at this point in the history
  • Loading branch information
gcharest authored Jul 26, 2024
1 parent e57050d commit 1ba6dde
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/modules/aws/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def aws_command(ack, command, logger, respond, client, body) -> None:
aws_account_health.request_health_modal(client, body)
case "users":
users.command_handler(client, body, respond, args, logger)
# request_user_provisioning(client, body, respond, args, logger)
case "groups":
groups.command_handler(client, body, respond, args, logger)
case _:
Expand Down
2 changes: 1 addition & 1 deletion app/modules/aws/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from modules.permissions import handler as permissions
from integrations.slack import users as slack_users

AWS_ADMIN_GROUPS = os.environ.get("AWS_ADMIN_GROUPS", "").split(",")
AWS_ADMIN_GROUPS = os.environ.get("AWS_ADMIN_GROUPS", "[email protected]").split(",")

help_text = """
\n *AWS Users*:
Expand Down

0 comments on commit 1ba6dde

Please sign in to comment.