File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ module "lambda_function" {
34
34
create_async_event_config = true
35
35
maximum_event_age_in_seconds = 100
36
36
37
- provisioned_concurrent_executions = 1
38
-
39
37
attach_policies = true
40
38
policies = [
41
39
" arn:aws:iam::aws:policy/service-role/AWSLambdaSQSQueueExecutionRole" ,
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ resource "aws_lambda_alias" "no_refresh" {
27
27
additional_version_weights = var. routing_additional_version_weights
28
28
}
29
29
}
30
+
31
+ lifecycle {
32
+ ignore_changes = [function_version ]
33
+ }
30
34
}
31
35
32
36
resource "aws_lambda_alias" "with_refresh" {
@@ -45,10 +49,6 @@ resource "aws_lambda_alias" "with_refresh" {
45
49
additional_version_weights = var. routing_additional_version_weights
46
50
}
47
51
}
48
-
49
- lifecycle {
50
- ignore_changes = [function_version ]
51
- }
52
52
}
53
53
54
54
resource "aws_lambda_function_event_invoke_config" "this" {
You can’t perform that action at this time.
0 commit comments