You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vars.tf
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@ variable "description" {
4
4
type=string
5
5
}
6
6
7
+
variable"image_uri" {
8
+
default=null
9
+
description="Image URI of the ECR container image for the Lambda Function. Overrides the use of path variable & s3 deployment object"
10
+
type=string
11
+
}
12
+
7
13
variable"deployment_bucket_id" {
8
14
default=null
9
15
description="ID of S3 bucket that should store our deployment artifacts. Will use the /account/DEPLOYMENT_BUCKET_ID value from SSM unless specified otherwise."
@@ -29,6 +35,7 @@ variable "git_sha" {
29
35
}
30
36
31
37
variable"handler" {
38
+
default=null
32
39
description="Name of the handler function inside the artifact (https://docs.aws.amazon.com/lambda/latest/dg/configuration-console.html)"
0 commit comments