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
description="Provide this to allow your function to access your VPC."
41
+
type=object({
42
+
security_group_ids =list(string)
43
+
subnet_ids =list(string)
44
+
})
45
+
}
46
+
38
47
variable"hosted_zone" {
39
48
type=object({
40
49
name =string,
@@ -71,10 +80,6 @@ variable "public_subnet_ids" {
71
80
type=list(string)
72
81
description="List of subnet IDs for the ALB."
73
82
}
74
-
variable"private_subnet_ids" {
75
-
type=list(string)
76
-
description="List of subnet IDs for the Lambda service."
77
-
}
78
83
79
84
variable"tags" {
80
85
type=map(string)
@@ -99,12 +104,6 @@ variable "lambda_policies" {
99
104
default=[]
100
105
}
101
106
102
-
variable"security_groups" {
103
-
type=list(string)
104
-
description="List of extra security group IDs to attach to the lambda."
105
-
default=[]
106
-
}
107
-
108
107
variable"use_codedeploy" {
109
108
type=bool
110
109
description="If true, CodeDeploy App and Deployment Group will be created and TF will not update alias to point to new versions of the Lambda (becuase CodeDeploy will do that)."
0 commit comments