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: README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ module lambda {
91
91
| tags | A mapping of tags to assign to the object. |`map`|`{}`| no |
92
92
| tracing\_config | Use AWS X-Ray to collect data about events that your function processes, and to identify the cause of errors in your serverless applications. Can be either PassThrough or Active. | <pre>object({<br> mode = string<br> })</pre> |`null`| no |
93
93
| vpc\_config | Provide this to allow your function to access your VPC. Fields documented below. See Lambda in VPC. | <pre>object({<br> security_group_ids = list(string)<br> subnet_ids = list(string)<br> })</pre> |`null`| no |
94
+
| file\_system\_config | Provide this to allow your function to mount your EFS file system. Fields documented below. See Lambda with EFS. | <pre>{<br> efs_access_point_arn = string<br> local_mount_path = string<br>}</pre> |`null`| no |
Copy file name to clipboardExpand all lines: variables.tf
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,15 @@ variable "vpc_config" {
51
51
})
52
52
}
53
53
54
+
variable"file_system_config" {
55
+
default=null
56
+
description="Provide this to allow your function to mount your EFS file system. Fields documented below. See Lambda with EFS."
57
+
type=object({
58
+
efs_access_point_arn =string
59
+
local_mount_path =string
60
+
})
61
+
}
62
+
54
63
variable"tracing_config" {
55
64
default=null
56
65
description="Use AWS X-Ray to collect data about events that your function processes, and to identify the cause of errors in your serverless applications. Can be either PassThrough or Active."
0 commit comments