File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1414stack_name_prefix = f"app-{ env_name } "
1515fully_qualified_domain_name = config ["FQDN" ]
1616environment_tags = config ["TAGS" ]
17- app_version = "edge "
17+ app_version = "latest "
1818
1919# recursively apply tags to all stack resources
2020if environment_tags :
4949 ecs_task_cpu = 256 ,
5050 ecs_task_memory = 512 ,
5151 container_name = "my-app" ,
52- container_location = f"ghcr.io/sage-bionetworks/my-app:{ app_version } " ,
52+ # can also reference github with 'ghcr.io/sage-bionetworks/my-app:{app_version}'
53+ container_location = f"nginx:{ app_version } " ,
5354 container_port = 80 ,
5455 container_env_vars = {
5556 "APP_VERSION" : f"{ app_version } " ,
6263 cluster = ecs_stack .cluster ,
6364 props = app_props ,
6465 load_balancer = load_balancer_stack .alb ,
65- certificate_arn = config ["CERTIFICATE_ARN" ],
66- health_check_path = "/health" ,
6766)
6867
6968cdk_app .synth ()
You can’t perform that action at this time.
0 commit comments