From ac2b8259179044834625db1ffc50df2af1807ae6 Mon Sep 17 00:00:00 2001 From: sivchari Date: Fri, 18 Aug 2023 22:34:46 +0900 Subject: [PATCH] docs: add vpc config description Signed-off-by: sivchari --- .../defining-app-configuration/lambda.md | 9 +++++++++ .../defining-app-configuration/lambda.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/docs/content/en/docs-dev/user-guide/managing-application/defining-app-configuration/lambda.md b/docs/content/en/docs-dev/user-guide/managing-application/defining-app-configuration/lambda.md index 3b1a180505..c58fe6fbff 100644 --- a/docs/content/en/docs-dev/user-guide/managing-application/defining-app-configuration/lambda.md +++ b/docs/content/en/docs-dev/user-guide/managing-application/defining-app-configuration/lambda.md @@ -34,6 +34,15 @@ spec: app: simple environments: FOO: bar + # vpcConfig is optional value. If you define a vpc configuration to lambda, you can + # use this field. + vpcConfig: + securityGroupIds: + - sg-01234 + - sg-56789 + subnetIds: + - subnet-01234 + - subnet-56789 ``` Except the `tags` and the `environments` field, all others are required fields for the deployment to run. diff --git a/docs/content/en/docs-v0.44.x/user-guide/managing-application/defining-app-configuration/lambda.md b/docs/content/en/docs-v0.44.x/user-guide/managing-application/defining-app-configuration/lambda.md index 3b1a180505..c58fe6fbff 100644 --- a/docs/content/en/docs-v0.44.x/user-guide/managing-application/defining-app-configuration/lambda.md +++ b/docs/content/en/docs-v0.44.x/user-guide/managing-application/defining-app-configuration/lambda.md @@ -34,6 +34,15 @@ spec: app: simple environments: FOO: bar + # vpcConfig is optional value. If you define a vpc configuration to lambda, you can + # use this field. + vpcConfig: + securityGroupIds: + - sg-01234 + - sg-56789 + subnetIds: + - subnet-01234 + - subnet-56789 ``` Except the `tags` and the `environments` field, all others are required fields for the deployment to run.