Skip to content

Commit

Permalink
Fix consutrct prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Dec 17, 2024
1 parent 7423261 commit f56203b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions openchallenges/data_integration_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, scope: Construct, id: str) -> None:
def _build_lambda_role(self) -> iam.Role:
return iam.Role(
self,
f"${id}-LambdaRole",
f"{id}-LambdaRole",
assumed_by=iam.ServicePrincipal("lambda.amazonaws.com"),
managed_policies=[
iam.ManagedPolicy.from_aws_managed_policy_name(
Expand All @@ -51,7 +51,7 @@ def _build_lambda_function(self, role: iam.Role) -> lambda_.Function:
"""
return lambda_.DockerImageFunction(
self,
f"${id}-LambdaFunction",
f"{id}-LambdaFunction",
code=lambda_.DockerImageCode.from_image_asset(
# Directory relative to where you execute cdk deploy contains a
# Dockerfile with build instructions.
Expand Down
8 changes: 4 additions & 4 deletions openchallenges/data_integration_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(
"""
super().__init__(scope, id, **kwargs)

data_integration_lambda = DataIntegrationLambda(self, f"${id}-lambda")
data_integration_lambda = DataIntegrationLambda(self, f"{id}-lambda")

target = scheduler_targets.LambdaInvoke(
data_integration_lambda.lambda_function,
Expand All @@ -52,13 +52,13 @@ def __init__(
# to this group the future)
schedule_group = scheduler_alpha.Group(
self,
f"${id}-schedule-group",
group_name=f"${id}-schedule-group",
f"{id}-schedule-group",
group_name=f"{id}-schedule-group",
)

scheduler_alpha.Schedule(
self,
f"${id}-schedule",
f"{id}-schedule",
schedule=props.schedule,
target=target,
group=schedule_group,
Expand Down

0 comments on commit f56203b

Please sign in to comment.