File tree Expand file tree Collapse file tree 7 files changed +0
-11
lines changed
Expand file tree Collapse file tree 7 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,5 @@ fix_string_key versionNumber "${VERSION_NUMBER}"
4242fix_string_key commitId " ${COMMIT_ID} "
4343fix_string_key logRetentionInDays " ${LOG_RETENTION_IN_DAYS} "
4444fix_string_key logLevel " ${LOG_LEVEL} "
45- fix_boolean_number_key enableMutualTls " ${ENABLE_MUTUAL_TLS} "
4645fix_string_key slackBotToken " ${SLACK_BOT_TOKEN} "
4746fix_string_key slackSigningSecret " ${SLACK_SIGNING_SECRET} "
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import {ApiGateway as ApiGatewayTarget} from "aws-cdk-lib/aws-route53-targets"
2020export 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 } ,
Original file line number Diff line number Diff 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 } )
You can’t perform that action at this time.
0 commit comments