Skip to content

Commit 344906d

Browse files
committed
Remove ENABLE_MUTUAL_TLS variable
1 parent 95b2cb3 commit 344906d

File tree

7 files changed

+0
-11
lines changed

7 files changed

+0
-11
lines changed

.github/scripts/fix_cdk_json.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,5 @@ fix_string_key versionNumber "${VERSION_NUMBER}"
4242
fix_string_key commitId "${COMMIT_ID}"
4343
fix_string_key logRetentionInDays "${LOG_RETENTION_IN_DAYS}"
4444
fix_string_key logLevel "${LOG_LEVEL}"
45-
fix_boolean_number_key enableMutualTls "${ENABLE_MUTUAL_TLS}"
4645
fix_string_key slackBotToken "${SLACK_BOT_TOKEN}"
4746
fix_string_key slackSigningSecret "${SLACK_SIGNING_SECRET}"

.github/workflows/cdk_release_code.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ on:
2727
LOG_LEVEL:
2828
required: true
2929
type: string
30-
ENABLE_MUTUAL_TLS:
31-
required: true
32-
type: boolean
3330
MARK_JIRA_RELEASED:
3431
type: boolean
3532
default: false
@@ -124,7 +121,6 @@ jobs:
124121
COMMIT_ID: "${{ inputs.COMMIT_ID }}"
125122
LOG_RETENTION_IN_DAYS: "${{ inputs.LOG_RETENTION_IN_DAYS }}"
126123
LOG_LEVEL: "${{ inputs.LOG_LEVEL }}"
127-
ENABLE_MUTUAL_TLS: "${{ inputs.ENABLE_MUTUAL_TLS }}"
128124
SLACK_BOT_TOKEN: "${{ secrets.SLACK_BOT_TOKEN }}"
129125
SLACK_SIGNING_SECRET: "${{ secrets.SLACK_SIGNING_SECRET }}"
130126

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ jobs:
114114
DEPLOY_CODE: true
115115
LOG_RETENTION_IN_DAYS: 30
116116
LOG_LEVEL: DEBUG
117-
ENABLE_MUTUAL_TLS: false
118117
MARK_JIRA_RELEASED: false
119118
secrets:
120119
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}

.github/workflows/pull_request.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ jobs:
7272
DEPLOY_CODE: true
7373
LOG_RETENTION_IN_DAYS: 30
7474
LOG_LEVEL: DEBUG
75-
ENABLE_MUTUAL_TLS: false
7675
secrets:
7776
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}
7877
CDK_PULL_IMAGE_ROLE: ${{ secrets.DEV_CDK_PULL_IMAGE_ROLE }}

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ jobs:
133133
DEPLOY_CODE: true
134134
LOG_RETENTION_IN_DAYS: 30
135135
LOG_LEVEL: DEBUG
136-
ENABLE_MUTUAL_TLS: false
137136
secrets:
138137
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}
139138
CDK_PULL_IMAGE_ROLE: ${{ secrets.DEV_CDK_PULL_IMAGE_ROLE }}

packages/cdk/constructs/RestApiGateway.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import {ApiGateway as ApiGatewayTarget} from "aws-cdk-lib/aws-route53-targets"
2020
export interface RestApiGatewayProps {
2121
readonly stackName: string
2222
readonly logRetentionInDays: number
23-
readonly enableMutualTls: boolean
2423
readonly trustStoreKey: string
2524
readonly truststoreVersion: string
2625
}
@@ -78,7 +77,6 @@ export class RestApiGateway extends Construct {
7877
securityPolicy: SecurityPolicy.TLS_1_2,
7978
endpointType: EndpointType.REGIONAL
8079
},
81-
disableExecuteApiEndpoint: props.enableMutualTls,
8280
endpointConfiguration: {
8381
types: [EndpointType.REGIONAL]
8482
},

packages/cdk/resources/Apis.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class Apis extends Construct {
2121
const apiGateway = new RestApiGateway(this, "EpsAssistApiGateway", {
2222
stackName: props.stackName,
2323
logRetentionInDays: props.logRetentionInDays,
24-
enableMutualTls: props.enableMutalTls,
2524
trustStoreKey: "unused",
2625
truststoreVersion: "unused"
2726
})

0 commit comments

Comments
 (0)