diff --git a/test/integration-tests/basic/apigateway-with-export/serverless.yml b/test/integration-tests/basic/apigateway-with-export/serverless.yml index ff68c0cb..ab79ded9 100644 --- a/test/integration-tests/basic/apigateway-with-export/serverless.yml +++ b/test/integration-tests/basic/apigateway-with-export/serverless.yml @@ -1,5 +1,5 @@ # APIGateway with export outputs -service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-export-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-export frameworkVersion: "4.2.5" @@ -27,7 +27,7 @@ resources: Value: Ref: ApiGatewayRestApi # Logical ID Export: - Name: api-${self:provider.stage}-${env:RANDOM_STRING}-restApiId + Name: api-${self:provider.stage}-restApiId RootResource: Description: Main service's API Gateway Root Resource ID Value: @@ -35,7 +35,7 @@ resources: - ApiGatewayRestApi # Logical ID - RootResourceId # Logical ID Export: - Name: api-${self:provider.stage}-${env:RANDOM_STRING}-RootResourceId + Name: api-${self:provider.stage}-RootResourceId plugins: - serverless-domain-manager @@ -43,7 +43,7 @@ plugins: custom: customDomain: stage: ${self:provider.stage} - domainName: ${env:PLUGIN_IDENTIFIER}-apigateway-with-export-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-apigateway-with-export.${env:TEST_DOMAIN} autoDomain: true basePath: hello-world endpointType: REGIONAL diff --git a/test/integration-tests/basic/apigateway-with-import/serverless.yml b/test/integration-tests/basic/apigateway-with-import/serverless.yml index e239fb7f..b7b437a7 100644 --- a/test/integration-tests/basic/apigateway-with-import/serverless.yml +++ b/test/integration-tests/basic/apigateway-with-import/serverless.yml @@ -1,5 +1,5 @@ # APIGateway with import other CloudFormation stack outputs -service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-import-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-apigateway-with-import frameworkVersion: "4.2.5" @@ -12,9 +12,9 @@ provider: stage: test apiGateway: restApiId: - Fn::ImportValue: api-${self:provider.stage}-${env:RANDOM_STRING}-restApiId + Fn::ImportValue: api-${self:provider.stage}-restApiId restApiRootResourceId: - Fn::ImportValue: api-${self:provider.stage}-${env:RANDOM_STRING}-RootResourceId + Fn::ImportValue: api-${self:provider.stage}-RootResourceId functions: helloWorld: handler: handler.helloWorld diff --git a/test/integration-tests/basic/basepath-mapping/serverless.yml b/test/integration-tests/basic/basepath-mapping/serverless.yml index 629027c2..2d58a1f0 100644 --- a/test/integration-tests/basic/basepath-mapping/serverless.yml +++ b/test/integration-tests/basic/basepath-mapping/serverless.yml @@ -1,5 +1,5 @@ # Enabled and testing basepath mapping -service: ${env:PLUGIN_IDENTIFIER}-basepath-mapping-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-basepath-mapping frameworkVersion: "4.2.5" @@ -27,7 +27,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-basepath-mapping-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-basepath-mapping.${env:TEST_DOMAIN} basePath: 'api' package: diff --git a/test/integration-tests/basic/create-domain-idempotent/serverless.yml b/test/integration-tests/basic/create-domain-idempotent/serverless.yml index b22b289d..bf02820f 100644 --- a/test/integration-tests/basic/create-domain-idempotent/serverless.yml +++ b/test/integration-tests/basic/create-domain-idempotent/serverless.yml @@ -1,5 +1,5 @@ # Creating a domain should be idempotent -service: ${env:PLUGIN_IDENTIFIER}-create-domain-idempotent-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-create-domain-idempotent frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-create-domain-idempotent-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-create-domain-idempotent.${env:TEST_DOMAIN} basePath: '' package: diff --git a/test/integration-tests/basic/deploy-idempotent/serverless.yml b/test/integration-tests/basic/deploy-idempotent/serverless.yml index dd502bbb..d53e5504 100644 --- a/test/integration-tests/basic/deploy-idempotent/serverless.yml +++ b/test/integration-tests/basic/deploy-idempotent/serverless.yml @@ -1,5 +1,5 @@ # Deploying should be idempotent -service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent.${env:TEST_DOMAIN} basePath: '' package: diff --git a/test/integration-tests/basic/deploy-idempotent2/serverless.yml b/test/integration-tests/basic/deploy-idempotent2/serverless.yml index ff338b39..03f54444 100644 --- a/test/integration-tests/basic/deploy-idempotent2/serverless.yml +++ b/test/integration-tests/basic/deploy-idempotent2/serverless.yml @@ -1,5 +1,5 @@ # Deploying should be idempotent for the same domain and different paths -service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2 frameworkVersion: "4.2.5" @@ -25,11 +25,11 @@ custom: - rest: autoDomain: true basePath: "path1" - domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2.${env:TEST_DOMAIN} allowPathMatching: true - rest: basePath: "path2" - domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-deploy-idempotent2.${env:TEST_DOMAIN} allowPathMatching: true package: diff --git a/test/integration-tests/basic/http-api-multiple/serverless.yml b/test/integration-tests/basic/http-api-multiple/serverless.yml index e02e42b1..2c2f7c01 100644 --- a/test/integration-tests/basic/http-api-multiple/serverless.yml +++ b/test/integration-tests/basic/http-api-multiple/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-http-api-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-http-api frameworkVersion: "4.2.5" @@ -26,12 +26,12 @@ plugins: custom: customDomains: - http: - domainName: ${env:PLUGIN_IDENTIFIER}-http-api-multi-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-http-api-multi.${env:TEST_DOMAIN} basePath: '' endpointType: REGIONAL autoDomain: true - http: - domainName: ${env:PLUGIN_IDENTIFIER}-http-api-milti2-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-http-api-milti2.${env:TEST_DOMAIN} basePath: '' endpointType: REGIONAL autoDomain: true diff --git a/test/integration-tests/basic/mutual-tls/serverless.yml b/test/integration-tests/basic/mutual-tls/serverless.yml index 530eeff0..4fa90dc4 100644 --- a/test/integration-tests/basic/mutual-tls/serverless.yml +++ b/test/integration-tests/basic/mutual-tls/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-mutual-tls-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-mutual-tls frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-mutual-tls-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-mutual-tls.${env:TEST_DOMAIN} autoDomain: true endpointType: REGIONAL tlsTruststoreUri: ${env:TLS_TRUSTSTORE_URI} diff --git a/test/integration-tests/basic/null-basepath-mapping/serverless.yml b/test/integration-tests/basic/null-basepath-mapping/serverless.yml index f768a5b4..c4eb229a 100644 --- a/test/integration-tests/basic/null-basepath-mapping/serverless.yml +++ b/test/integration-tests/basic/null-basepath-mapping/serverless.yml @@ -1,5 +1,5 @@ # Enabled and testing basepath mapping -service: ${env:PLUGIN_IDENTIFIER}-null-basepath-mapping-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-null-basepath-mapping frameworkVersion: "4.2.5" @@ -27,7 +27,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-null-basepath-mapping-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-null-basepath-mapping.${env:TEST_DOMAIN} basePath: '' package: diff --git a/test/integration-tests/basic/route53-profile/serverless.yml b/test/integration-tests/basic/route53-profile/serverless.yml index 6cbdc815..ad0290e1 100644 --- a/test/integration-tests/basic/route53-profile/serverless.yml +++ b/test/integration-tests/basic/route53-profile/serverless.yml @@ -1,5 +1,5 @@ # Creating a domain should be idempotent -service: ${env:PLUGIN_IDENTIFIER}-route53-profile-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-route53-profile frameworkVersion: "4.2.5" @@ -23,7 +23,7 @@ plugins: custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-route53-profile-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-route53-profile.${env:TEST_DOMAIN} route53Profile: ${env:ROUTE53_PROFILE} package: diff --git a/test/integration-tests/deploy/auto-domain/serverless.yml b/test/integration-tests/deploy/auto-domain/serverless.yml index 73172277..a7fbed27 100644 --- a/test/integration-tests/deploy/auto-domain/serverless.yml +++ b/test/integration-tests/deploy/auto-domain/serverless.yml @@ -1,5 +1,5 @@ # create_domain should be run as part of deployment -service: ${env:PLUGIN_IDENTIFIER}-auto-domain-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-auto-domain frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-auto-domain-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-auto-domain.${env:TEST_DOMAIN} basePath: '' autoDomain: true autoDomainWaitFor: 120 diff --git a/test/integration-tests/deploy/basepath-nested-stack/serverless.yml b/test/integration-tests/deploy/basepath-nested-stack/serverless.yml index 44cf72dc..632ef29e 100644 --- a/test/integration-tests/deploy/basepath-nested-stack/serverless.yml +++ b/test/integration-tests/deploy/basepath-nested-stack/serverless.yml @@ -1,5 +1,5 @@ # Enabled with custom basepath -service: ${env:PLUGIN_IDENTIFIER}-basepath-nested-stack-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-basepath-nested-stack frameworkVersion: "4.2.5" @@ -23,7 +23,7 @@ plugins: - serverless-plugin-split-stacks custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-basepath-nested-stack-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-basepath-nested-stack.${env:TEST_DOMAIN} basePath: 'api' stage: ${self:provider.stage} createRoute53Record: true diff --git a/test/integration-tests/deploy/basepath/serverless.yml b/test/integration-tests/deploy/basepath/serverless.yml index 28e5deaa..30d6087f 100644 --- a/test/integration-tests/deploy/basepath/serverless.yml +++ b/test/integration-tests/deploy/basepath/serverless.yml @@ -1,5 +1,5 @@ # Enabled with custom basepath -service: ${env:PLUGIN_IDENTIFIER}-basepath-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-basepath frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-basepath-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-basepath.${env:TEST_DOMAIN} basePath: 'api' package: diff --git a/test/integration-tests/deploy/custom-apigateway/serverless.yml b/test/integration-tests/deploy/custom-apigateway/serverless.yml index 79efd4be..728c43c0 100644 --- a/test/integration-tests/deploy/custom-apigateway/serverless.yml +++ b/test/integration-tests/deploy/custom-apigateway/serverless.yml @@ -1,5 +1,5 @@ # Enabled with default values -service: ${env:PLUGIN_IDENTIFIER}-custom-apigateway-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-custom-apigateway frameworkVersion: "4.2.5" @@ -27,7 +27,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-custom-apigateway-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-custom-apigateway.${env:TEST_DOMAIN} package: patterns: diff --git a/test/integration-tests/deploy/default/serverless.yml b/test/integration-tests/deploy/default/serverless.yml index 4e1c77ea..5d0511fc 100644 --- a/test/integration-tests/deploy/default/serverless.yml +++ b/test/integration-tests/deploy/default/serverless.yml @@ -1,5 +1,5 @@ # Enabled with default values -service: ${env:PLUGIN_IDENTIFIER}-default-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-default frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-default-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-default.${env:TEST_DOMAIN} package: patterns: diff --git a/test/integration-tests/deploy/http-api/serverless.yml b/test/integration-tests/deploy/http-api/serverless.yml index e99a4f79..94dd3e34 100644 --- a/test/integration-tests/deploy/http-api/serverless.yml +++ b/test/integration-tests/deploy/http-api/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-http-api-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-http-api frameworkVersion: "4.2.5" @@ -20,7 +20,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-http-api-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-http-api.${env:TEST_DOMAIN} endpointType: REGIONAL apiType: http # the stage should be set to $default for the base path (none) diff --git a/test/integration-tests/deploy/regional-basepath/serverless.yml b/test/integration-tests/deploy/regional-basepath/serverless.yml index ec597536..1b534ff8 100644 --- a/test/integration-tests/deploy/regional-basepath/serverless.yml +++ b/test/integration-tests/deploy/regional-basepath/serverless.yml @@ -1,5 +1,5 @@ # Enabled with regional endpoint, custom basePath -service: ${env:PLUGIN_IDENTIFIER}-regional-basepath-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-regional-basepath frameworkVersion: "4.2.5" @@ -23,7 +23,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-regional-basepath-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-regional-basepath.${env:TEST_DOMAIN} basePath: 'api' endpointType: REGIONAL diff --git a/test/integration-tests/deploy/regional-stage-basepath/serverless.yml b/test/integration-tests/deploy/regional-stage-basepath/serverless.yml index a25625b8..9381ddce 100644 --- a/test/integration-tests/deploy/regional-stage-basepath/serverless.yml +++ b/test/integration-tests/deploy/regional-stage-basepath/serverless.yml @@ -1,5 +1,5 @@ # Enabled with regional endpoint, custom stage, empty basepath -service: ${env:PLUGIN_IDENTIFIER}-regional-stage-basepath-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-regional-stage-basepath frameworkVersion: "4.2.5" @@ -23,7 +23,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-regional-stage-basepath-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-regional-stage-basepath.${env:TEST_DOMAIN} stage: test basePath: '' endpointType: REGIONAL diff --git a/test/integration-tests/deploy/regional-tls-1-0/serverless.yml b/test/integration-tests/deploy/regional-tls-1-0/serverless.yml index 74fd5589..15c1e79f 100644 --- a/test/integration-tests/deploy/regional-tls-1-0/serverless.yml +++ b/test/integration-tests/deploy/regional-tls-1-0/serverless.yml @@ -1,5 +1,5 @@ # Test regional domains with TLS 1.0 -service: ${env:PLUGIN_IDENTIFIER}-regional-tls-1-0-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-regional-tls-1-0 frameworkVersion: "4.2.5" @@ -24,7 +24,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-regional-tls-1-0-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-regional-tls-1-0.${env:TEST_DOMAIN} securityPolicy: tls_1_0 endpointType: REGIONAL diff --git a/test/integration-tests/deploy/route-53-latency-routing/serverless.yml b/test/integration-tests/deploy/route-53-latency-routing/serverless.yml index b46ef44b..2a420a67 100644 --- a/test/integration-tests/deploy/route-53-latency-routing/serverless.yml +++ b/test/integration-tests/deploy/route-53-latency-routing/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-route-53-latency-routing-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-route-53-latency-routing frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-route-53-latency-routing-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-route-53-latency-routing.${env:TEST_DOMAIN} endpointType: REGIONAL route53Params: routingPolicy: latency diff --git a/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml b/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml index 786ae9e2..d0a4ac88 100644 --- a/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml +++ b/test/integration-tests/deploy/route-53-weighted-routing/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-route-53-weighted-routing-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-route-53-weighted-routing frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-route-53-weighted-routing-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-route-53-weighted-routing.${env:TEST_DOMAIN} endpointType: REGIONAL route53Params: routingPolicy: weighted diff --git a/test/integration-tests/deploy/split-horizon-dns/serverless.yml b/test/integration-tests/deploy/split-horizon-dns/serverless.yml index 684f8a0b..80540b78 100644 --- a/test/integration-tests/deploy/split-horizon-dns/serverless.yml +++ b/test/integration-tests/deploy/split-horizon-dns/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-split-horizon-dns-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-split-horizon-dns frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-split-horizon-dns-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-split-horizon-dns.${env:TEST_DOMAIN} endpointType: REGIONAL splitHorizonDns: true package: diff --git a/test/integration-tests/deploy/stage-basepath/serverless.yml b/test/integration-tests/deploy/stage-basepath/serverless.yml index b4bf239c..5512986d 100644 --- a/test/integration-tests/deploy/stage-basepath/serverless.yml +++ b/test/integration-tests/deploy/stage-basepath/serverless.yml @@ -1,5 +1,5 @@ # Enabled with custom stage and empty basepath -service: ${env:PLUGIN_IDENTIFIER}-stage-basepath-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-stage-basepath frameworkVersion: "4.2.5" @@ -22,7 +22,7 @@ plugins: - serverless-domain-manager custom: customDomain: - domainName: ${env:PLUGIN_IDENTIFIER}-stage-basepath-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-stage-basepath.${env:TEST_DOMAIN} stage: test basePath: '' diff --git a/test/integration-tests/deploy/web-socket/serverless.yml b/test/integration-tests/deploy/web-socket/serverless.yml index 8059e68d..d10fe4a6 100644 --- a/test/integration-tests/deploy/web-socket/serverless.yml +++ b/test/integration-tests/deploy/web-socket/serverless.yml @@ -1,4 +1,4 @@ -service: ${env:PLUGIN_IDENTIFIER}-web-socket-${env:RANDOM_STRING} +service: ${env:PLUGIN_IDENTIFIER}-web-socket frameworkVersion: "4.2.5" @@ -20,7 +20,7 @@ plugins: custom: customDomain: websocket: - domainName: ${env:PLUGIN_IDENTIFIER}-web-socket-${env:RANDOM_STRING}.${env:TEST_DOMAIN} + domainName: ${env:PLUGIN_IDENTIFIER}-web-socket.${env:TEST_DOMAIN} basePath: '' endpointType: REGIONAL