Skip to content
This repository was archived by the owner on Oct 16, 2025. It is now read-only.

Commit 76188d5

Browse files
committed
admin tool
2 parents a8caf25 + 3e3b608 commit 76188d5

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

colladmin-lambda-config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fi
3535

3636
ADMIN_ALB_URL=`get_ssm_value_by_name admintool/api-path`
3737
ADMIN_ALB_URL=${ADMIN_ALB_URL//-dev/${REP}}
38-
ECS_URL=`get_ssm_value_by_name admintool/ecs`
38+
ECS_URL=`get_ssm_value_by_name admintool/ecs-${DEPLOY_ENV}`
3939

4040
COLLADMIN_ALB_URL=`get_ssm_value_by_name colladmin/api-path`
4141
COLLADMIN_ALB_URL=${COLLADMIN_ALB_URL//-dev/${REP}}

lambda-config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fi
2727

2828
ADMIN_ALB_URL=`get_ssm_value_by_name admintool/api-path`
2929
ADMIN_ALB_URL=${ADMIN_ALB_URL//-dev/${REP}}
30-
ECS_URL=`get_ssm_value_by_name admintool/ecs`
30+
ECS_URL=`get_ssm_value_by_name admintool/ecs-${DEPLOY_ENV}`
3131

3232
COLLADMIN_ALB_URL=`get_ssm_value_by_name colladmin/api-path`
3333
COLLADMIN_ALB_URL=${COLLADMIN_ALB_URL//-dev/${REP}}

src-colladmin/config/ssm.registry.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,10 @@ ingest:
173173
description: Path location of Ingest working area
174174
ingestZfsThreshold:
175175
description: Usage percentage used in Ingest Provisioning State
176+
s3-config-bucket:
177+
description: S3 bucket containing Profiles
178+
s3-config-prefix:
179+
description: S3 prefix for Profiles
176180
localID:
177181
description: URL endpoint for Local ID service
178182
mail-host:

src-common/lambda_base.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ def default_template_parameters
194194
UC3INV_HOME: @config.fetch('uc3inv_home', ''),
195195
ADMINTOOL_BASE: LambdaBase.admintool_base,
196196
ADMINTOOL_HOME: LambdaBase.admintool_url,
197+
ECS_URL: LambdaBase.ecs_admintool_url,
197198
COLLADMIN_HOME: LambdaBase.colladmin_url,
198199
COLLADMIN_ROOT: LambdaBase.colladmin_root_url,
199200
COLLADMIN_ADMIN: LambdaBase.colladmin_url_admin,

src-common/template/adminnavdata.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<span class="breadpath breadpath_home">
2-
<a href="{{ADMINTOOL_HOME}}">Admin Tool Home</a>
2+
<a href="{{ADMINTOOL_HOME}}">Admin Tool Home</a> (<a href="{{ECS_URL}}">ECS</a>)
33
</span>
44
<span class="breadpath bp_campus bp_repo bp_coll bp_obj">
55
<a>Reports</a>

0 commit comments

Comments
 (0)