Skip to content

Commit

Permalink
SD-1610 Replaced the DevTest stack with the DT one
Browse files Browse the repository at this point in the history
  • Loading branch information
gj0dcsa committed Nov 17, 2024
1 parent d48cca4 commit 8d5b6bc
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
17 changes: 10 additions & 7 deletions cdk/src/main/java/org/dcsa/conformance/cdk/ConformanceApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,17 @@ public static void main(final String[] args) {
new ConformanceStack(
app,
StackProps.builder().env(Environment.builder().region(REGION).build()).build(),
"devtestConformanceStack",
"test", // in the dev account
"Z0720499I10UDAXMT620",
"conformance-development-1.dcsa.org",
"dtConformanceStack",
"dt",
"Z08637291XUXSIEGQ5KNR",
"conformance-dt-1.dcsa.org",
"arn:aws:lambda:eu-north-1:580247275435:layer:LambdaInsightsExtension:35",
"arn:aws:acm:eu-north-1:468100668426:certificate/64b2b920-f435-4ebc-9874-eb97e6bd9bf9",
"arn:aws:acm:eu-north-1:468100668426:certificate/607709d1-0910-43d1-adb8-9b2fc81cfa60",
"arn:aws:acm:us-east-1:468100668426:certificate/3ae61e03-9e88-4d6c-a3ac-9ac2943d80e1");
// dt-api.conformance-dt-1.dcsa.org
"arn:aws:acm:eu-north-1:231663969095:certificate/5b911671-b1b1-4435-9d68-654828be4ac0",
// dt-webui.conformance-dt-1.dcsa.org
"arn:aws:acm:eu-north-1:231663969095:certificate/58332d65-4f49-4216-9ebc-d8ed2219abdf",
// dt.conformance-dt-1.dcsa.org
"arn:aws:acm:us-east-1:231663969095:certificate/bba79568-0523-4b34-9844-accedcb4bd5e");

new ConformanceStack(
app,
Expand Down
4 changes: 2 additions & 2 deletions webui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
],
"outputHashing": "all"
},
"devtest": {
"dt": {
"budgets": [
{
"type": "initial",
Expand All @@ -84,7 +84,7 @@
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.devtest.ts"
"with": "src/environments/environment.dt.ts"
}
],
"outputHashing": "all"
Expand Down
9 changes: 0 additions & 9 deletions webui/src/environments/environment.devtest.ts

This file was deleted.

9 changes: 9 additions & 0 deletions webui/src/environments/environment.dt.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const environment = {
name: "dt",
production: true,
apiBaseUrl: 'https://dt-webui.conformance-dt-1.dcsa.org/',
useCognito: true,
cognitoUserPoolId: 'eu-north-1_It7UzW00Z',
cognitoClientId: '7r5r2a5v06otg47vm1vddhkvle',
siteTitle: 'DCSA Conformance DT',
};

0 comments on commit 8d5b6bc

Please sign in to comment.