Skip to content

Commit

Permalink
Merge pull request Sage-Bionetworks-IT#90 from tschaffter/merge-stage…
Browse files Browse the repository at this point in the history
…-into-prod

Merge stage into prod
  • Loading branch information
tschaffter authored Dec 17, 2024
2 parents 7e18c4b + fa64357 commit 8c185be
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# get the environment
environment = utils.get_environment()
stack_name_prefix = f"openchallenges-{environment}"
image_version = "1.1.2"
image_version = "1.3.1"

# get VARS from cdk.json
env_vars = app.node.try_get_context(environment)
Expand Down Expand Up @@ -308,7 +308,7 @@
"API_DOCS_URL": f"https://{fully_qualified_domain_name}/api-docs",
"APP_VERSION": image_version,
"CSR_API_URL": f"https://{fully_qualified_domain_name}/api/v1",
"DATA_UPDATED_ON": "2024-12-12",
"DATA_UPDATED_ON": "2024-12-17",
"ENVIRONMENT": "production",
"GOOGLE_TAG_MANAGER_ID": "GTM-NBR5XD8C",
"SSR_API_URL": "http://openchallenges-api-gateway:8082/api/v1",
Expand Down
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,
"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,
"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, "data-integration-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,
"group",
group_name="schedule-group",
f"{id}-schedule-group",
group_name=f"{id}-schedule-group",
)

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

0 comments on commit 8c185be

Please sign in to comment.