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
| log_retention_in_days | number | CloudWatch log group retention in days. Defaults to 7. | 7
86
86
| lambda_policies | list(string) | List of IAM Policy ARNs to attach to the lambda role. | []
87
87
| security_groups | list(string) | List of extra security group IDs to attach to the lambda. | []
88
+
| use_codedeploy | bool | 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). | false
Copy file name to clipboardExpand all lines: variables.tf
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ variable "env" {
11
11
variable"codedeploy_service_role_arn" {
12
12
type=string
13
13
description="ARN of the IAM Role for the CodeDeploy to use to initiate new deployments. (usually the PowerBuilder Role)"
14
+
default=null
14
15
}
15
16
16
17
variable"lambda_zip_file" {
@@ -103,3 +104,9 @@ variable "security_groups" {
103
104
description="List of extra security group IDs to attach to the lambda."
104
105
default=[]
105
106
}
107
+
108
+
variable"use_codedeploy" {
109
+
type=bool
110
+
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