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: variables.tf
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -843,3 +843,37 @@ variable "recursive_loop" {
843
843
type=string
844
844
default=null
845
845
}
846
+
847
+
###############
848
+
# Code Signing
849
+
###############
850
+
851
+
variable"enable_code_signing" {
852
+
description="Must be used with a lambda storing code on s3. Set this to true for triggering a signing job creating a signed copy of the lambda zip. https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html"
853
+
type=bool
854
+
default=false
855
+
}
856
+
857
+
variable"lambda_code_signing_profile_name" {
858
+
description="Lambda code signing profile name https://console.aws.amazon.com/lambda/home#/code-signing-configurations"
859
+
type=string
860
+
default=null
861
+
}
862
+
863
+
variable"s3_signing_bucket" {
864
+
description="Bucket where to upload the signed s3 file. If omitted default to var.s3_bucket"
865
+
type=string
866
+
default=null
867
+
}
868
+
869
+
variable"s3_signing_prefix" {
870
+
description="Prefix for the generated signed object. If omitted default to var.s3_prefix"
871
+
type=string
872
+
default=null
873
+
}
874
+
875
+
variable"ignore_signing_job_failure" {
876
+
description="Set this argument to true to ignore signing job failures and retrieve failed status and reason"
0 commit comments