Skip to content

Commit 7795b61

Browse files
committed
change links to /swift-server to /awslabs
1 parent 5063d36 commit 7795b61

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Examples/quoteapi/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ let package = Package(
1414
dependencies: [
1515
.package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.4.0"),
1616
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.8.2"),
17-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "2.0.0-beta.3"),
18-
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", from: "1.2.0"),
19-
// .package(url: "https://github.com/swift-server/swift-openapi-lambda.git", from: "0.3.0"),
17+
.package(url: "https://github.com/awslabs/swift-aws-lambda-runtime.git", from: "2.0.0"),
18+
.package(url: "https://github.com/awslabs/swift-aws-lambda-events.git", from: "1.2.0"),
19+
// .package(url: "https://github.com/awslabs/swift-openapi-lambda.git", from: "2.0.0"),
2020
.package(name: "swift-openapi-lambda", path: "../.."),
2121
.package(url: "https://github.com/swift-server/swift-service-lifecycle.git", from: "2.8.0"),
2222
],

Examples/quoteapi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This is an example application for demonstration purposes. When deploying such i
8989
- Ensure that AWS Lambda function is configured for function-level concurrent execution limit ([concurrency documentation](https://docs.aws.amazon.com/lambda/latest/dg/lambda-concurrency.html), [configuration guide](https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html))
9090
- Check encryption settings for Lambda environment variables ([documentation](https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars-encryption.html))
9191
- Ensure that AWS Lambda function is configured for a Dead Letter Queue (DLQ) ([documentation](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-dlq))
92-
- Ensure that AWS Lambda function is configured inside a VPC when it needs to access private resources ([documentation](https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html), [code example](https://github.com/swift-server/swift-aws-lambda-runtime/tree/main/Examples/ServiceLifecycle%2BPostgres))
92+
- Ensure that AWS Lambda function is configured inside a VPC when it needs to access private resources ([documentation](https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html), [code example](https://github.com/awslabs/swift-aws-lambda-runtime/tree/main/Examples/ServiceLifecycle%2BPostgres))
9393

9494
**Note:** The `openapi.yaml` file in this example is not suited for production. In real-world scenarios, you must:
9595
1. Ensure that the global security field has rules defined

Examples/quoteapi/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Description: SAM Template for QuoteService
1616
# See: https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-dlq
1717
# - Ensure that AWS Lambda function is configured inside a VPC when it needs to access private resources
1818
# See: https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html
19-
# Code Example: https://github.com/swift-server/swift-aws-lambda-runtime/tree/main/Examples/ServiceLifecycle%2BPostgres
19+
# Code Example: https://github.com/awslabs/swift-aws-lambda-runtime/tree/main/Examples/ServiceLifecycle%2BPostgres
2020

2121
Globals:
2222
Function:

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ let package = Package(
99
products: [.library(name: "OpenAPILambda", targets: ["OpenAPILambda"])],
1010
dependencies: [
1111
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.8.2"),
12-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "2.0.0-beta.3"),
13-
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", from: "1.2.0"),
12+
.package(url: "https://github.com/awslabs/swift-aws-lambda-runtime.git", from: "2.0.0"),
13+
.package(url: "https://github.com/awslabs/swift-aws-lambda-events.git", from: "1.2.0"),
1414
],
1515
targets: [
1616
.target(

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build & Test on GitHub](https://github.com/swift-server/swift-openapi-lambda/actions/workflows/pull_request.yml/badge.svg)](https://github.com/swift-server/swift-openapi-lambda/actions/workflows//pull_request.yml)
1+
[![Build & Test on GitHub](https://github.com/awslabs/swift-openapi-lambda/actions/workflows/pull_request.yml/badge.svg)](https://github.com/awslabs/swift-openapi-lambda/actions/workflows//pull_request.yml)
22

33
![language](https://img.shields.io/badge/swift-6.0-blue)
44
![language](https://img.shields.io/badge/swift-6.1-blue)
@@ -39,9 +39,9 @@ dependencies: [
3939
.package(url: "https://github.com/apple/swift-openapi-runtime.git", from: "1.8.2"),
4040

4141
// add these three dependencies
42-
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "2.0.0-beta.3"),
43-
.package(url: "https://github.com/swift-server/swift-aws-lambda-events.git", from: "1.2.0"),
44-
.package(url: "https://github.com/swift-server/swift-openapi-lambda.git", from: "2.0.0"),
42+
.package(url: "https://github.com/awslabs/swift-aws-lambda-runtime.git", from: "2.0.0"),
43+
.package(url: "https://github.com/awslabs/swift-aws-lambda-events.git", from: "1.2.0"),
44+
.package(url: "https://github.com/awslabs/swift-openapi-lambda.git", from: "2.0.0"),
4545
],
4646
targets: [
4747
.executableTarget(
@@ -237,6 +237,6 @@ struct QuoteServiceImpl: APIProtocol, OpenAPILambdaHttpApi {
237237
## References
238238

239239
- [Swift OpenAPI Generator](https://swiftpackageindex.com/apple/swift-openapi-generator/documentation) - Complete documentation and tutorials
240-
- [Swift AWS Lambda Runtime](https://swiftpackageindex.com/swift-server/swift-aws-lambda-runtime) - Swift runtime for AWS Lambda
240+
- [Swift AWS Lambda Runtime](https://swiftpackageindex.com/awslabs/swift-aws-lambda-runtime) - Swift runtime for AWS Lambda
241241
- [AWS SAM](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html) - Serverless Application Model documentation
242242
- [API Gateway Lambda Authorizers](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-use-lambda-authorizer.html) - Lambda authorization documentation

0 commit comments

Comments
 (0)