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
// Use the "complete" output of the inner Lambda module so that the function ARN can't be used until everything has been completed (permissions have been applied)
error_message="The `lambda_architecture` variable must be `x86_64` or `arm64`."
32
+
}
33
+
}
34
+
19
35
variable"lambda_role_policies_json" {
20
36
description="A list of JSON-encoded policies to apply to a new role that will be created for the Lambda that runs shell commands. Conflicts with `lambda_role_arn`. If neither is provided, the module will attempt to use the role that the Terraform caller has assumed (if a role has been assumed)."
21
37
type=list(string)
@@ -62,8 +78,18 @@ variable "lambda_vpc_config" {
62
78
63
79
variable"lambda_layer_arns" {
64
80
description="A list of Lambda Layer ARNs to attach to the Lambda."
65
-
type=list(string)
66
-
default=[]
81
+
type=list(string)
82
+
default=[]
83
+
}
84
+
85
+
variable"lambda_runtime" {
86
+
description="The runtime to use for the lambda shell."
0 commit comments