Skip to content

Commit

Permalink
Move manual functions to manual directory
Browse files Browse the repository at this point in the history
  • Loading branch information
U-lis committed Oct 25, 2024
1 parent 128d7f0 commit 1f47653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions worker/worker_cdk_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,12 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
)

token_issuer = _lambda.Function(
self, f"{config.stage}-9c-iap-token-issue-function",
function_name=f"{config.stage}-9c-iap-issue-token",
self, f"{config.stage}-9c-iap-issue-tokens-from-garage-function",
function_name=f"{config.stage}-9c-iap-issue-tokens-from-garage",
runtime=_lambda.Runtime.PYTHON_3_10,
description=f"Execute IssueTokensFromGarage action",
code=_lambda.AssetCode("worker/worker", exclude=exclude_list),
handler="issue_tokens.issue",
handler="manual.issue_tokens_from_garage.issue",
layers=[layer],
role=role,
vpc=shared_stack.vpc,
Expand Down

0 comments on commit 1f47653

Please sign in to comment.