File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
provider "aws" {
2
2
region = local. aws_region
3
- version = " 2.59 "
3
+ version = " 2.61 "
4
4
}
5
5
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ resource "aws_apigatewayv2_stage" "webhook" {
18
18
lifecycle {
19
19
ignore_changes = [
20
20
// see bug https://github.com/terraform-providers/terraform-provider-aws/issues/12893
21
- default_route_settings
21
+ default_route_settings ,
22
+ // not terraform managed
23
+ deployment_id
22
24
]
23
25
}
24
26
@@ -29,6 +31,13 @@ resource "aws_apigatewayv2_stage" "webhook" {
29
31
}
30
32
31
33
resource "aws_apigatewayv2_integration" "webhook" {
34
+ lifecycle {
35
+ ignore_changes = [
36
+ // not terraform managed
37
+ passthrough_behavior
38
+ ]
39
+ }
40
+
32
41
api_id = aws_apigatewayv2_api. webhook . id
33
42
integration_type = " AWS_PROXY"
34
43
You can’t perform that action at this time.
0 commit comments