We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91d92ff commit c25c419Copy full SHA for c25c419
main.tf
@@ -81,7 +81,7 @@ resource "random_uuid" "lambda_uuid" {}
81
82
83
resource "aws_lambda_function" "this" {
84
- filename = data.archive_file.this.output_path
+ filename = "${path.module}/tmp/lambda.zip"
85
function_name = "${module.tags.name32}_${substr(random_uuid.lambda_uuid.result, 0, 31)}"
86
role = aws_iam_role.this.arn
87
handler = "rolling-restart.handler"
versions.tf
@@ -2,6 +2,6 @@
2
terraform {
3
required_version = "~> 0.12"
4
required_providers {
5
- archive = "~> 1.3"
+ archive = "~> 2.0"
6
}
7
0 commit comments