Skip to content

Commit

Permalink
Merge pull request #138 from guardian/ld/upgrade-tls
Browse files Browse the repository at this point in the history
Upgrade the TLS
  • Loading branch information
lindseydew authored Dec 2, 2024
2 parents 0bffb66 + 1c22329 commit 4464f61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cdk/lib/__snapshots__/mobile-save-for-later.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Object {
],
},
"DomainName": "mobile-save-for-later.mobile-aws.code.dev-guardianapis.com",
"SecurityPolicy": "TLS_1_2",
"Tags": Array [
Object {
"Key": "gu:cdk:version",
Expand Down Expand Up @@ -1289,6 +1290,7 @@ Object {
],
},
"DomainName": "mobile-save-for-later.mobile-aws.guardianapis.com",
"SecurityPolicy": "TLS_1_2",
"Tags": Array [
Object {
"Key": "gu:cdk:version",
Expand Down
1 change: 1 addition & 0 deletions cdk/lib/mobile-save-for-later.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ export class MobileSaveForLater extends GuStack {
const cfnDomainName = new CfnDomainName(this, "ApiDomainName", {
domainName: props.domainName,
certificateArn,
securityPolicy: "TLS_1_2",
});

new CfnBasePathMapping(this, "ApiMapping", {
Expand Down

0 comments on commit 4464f61

Please sign in to comment.