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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -784,7 +784,7 @@ No modules.
784
784
| <aname="input_docker_image"></a> [docker\_image](#input\_docker\_image)| Docker image to use for the build |`string`|`""`| no |
785
785
| <aname="input_docker_pip_cache"></a> [docker\_pip\_cache](#input\_docker\_pip\_cache)| Whether to mount a shared pip cache folder into docker environment or not |`any`|`null`| no |
786
786
| <aname="input_docker_with_ssh_agent"></a> [docker\_with\_ssh\_agent](#input\_docker\_with\_ssh\_agent)| Whether to pass SSH\_AUTH\_SOCK into docker environment or not |`bool`|`false`| no |
787
-
| <aname="input_enable_code_signing"></a> [enable\_code\_signing](#input\_enable\_code\_signing)| 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|`bool`|`false`| no |
787
+
| <aname="input_enable_code_signing"></a> [enable\_code\_signing](#input\_enable\_code\_signing)| 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 |`bool`|`false`| no |
788
788
| <aname="input_environment_variables"></a> [environment\_variables](#input\_environment\_variables)| A map that defines environment variables for the Lambda Function. |`map(string)`|`{}`| no |
789
789
| <aname="input_ephemeral_storage_size"></a> [ephemeral\_storage\_size](#input\_ephemeral\_storage\_size)| Amount of ephemeral storage (/tmp) in MB your Lambda Function can use at runtime. Valid value between 512 MB to 10,240 MB (10 GB). |`number`|`512`| no |
790
790
| <aname="input_event_source_mapping"></a> [event\_source\_mapping](#input\_event\_source\_mapping)| Map of event source mapping |`any`|`{}`| no |
@@ -806,7 +806,7 @@ No modules.
806
806
| <aname="input_kms_key_arn"></a> [kms\_key\_arn](#input\_kms\_key\_arn)| The ARN of KMS key to use by your Lambda Function |`string`|`null`| no |
807
807
| <aname="input_lambda_at_edge"></a> [lambda\_at\_edge](#input\_lambda\_at\_edge)| Set this to true if using Lambda@Edge, to enable publishing, limit the timeout, and allow edgelambda.amazonaws.com to invoke the function |`bool`|`false`| no |
808
808
| <aname="input_lambda_at_edge_logs_all_regions"></a> [lambda\_at\_edge\_logs\_all\_regions](#input\_lambda\_at\_edge\_logs\_all\_regions)| Whether to specify a wildcard in IAM policy used by Lambda@Edge to allow logging in all regions |`bool`|`true`| no |
809
-
| <aname="input_lambda_code_signing_profile_name"></a> [lambda\_code\_signing\_profile\_name](#input\_lambda\_code\_signing\_profile\_name)| Lambda code signing profile name https://console.aws.amazon.com/lambda/home#/code-signing-configurations|`string`|`null`| no |
809
+
| <aname="input_lambda_code_signing_profile_name"></a> [lambda\_code\_signing\_profile\_name](#input\_lambda\_code\_signing\_profile\_name)| Lambda code signing profile name |`string`|`null`| no |
810
810
| <aname="input_lambda_role"></a> [lambda\_role](#input\_lambda\_role)| IAM role ARN attached to the Lambda Function. This governs both who / what can invoke your Lambda Function, as well as what resources our Lambda Function has access to. See Lambda Permission Model for more details. |`string`|`""`| no |
811
811
| <aname="input_layer_name"></a> [layer\_name](#input\_layer\_name)| Name of Lambda Layer to create |`string`|`""`| no |
812
812
| <aname="input_layer_skip_destroy"></a> [layer\_skip\_destroy](#input\_layer\_skip\_destroy)| Whether to retain the old version of a previously deployed Lambda Layer. |`bool`|`false`| no |
Copy file name to clipboardExpand all lines: variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -853,13 +853,13 @@ variable "recursive_loop" {
853
853
###############
854
854
855
855
variable"enable_code_signing" {
856
-
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"
856
+
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"
857
857
type=bool
858
858
default=false
859
859
}
860
860
861
861
variable"lambda_code_signing_profile_name" {
862
-
description="Lambda code signing profile name https://console.aws.amazon.com/lambda/home#/code-signing-configurations"
0 commit comments