We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3271e commit c3c0bbbCopy full SHA for c3c0bbb
2 files changed
examples/default/providers.tf
@@ -1,5 +1,5 @@
1
provider "aws" {
2
region = local.aws_region
3
- version = "2.59"
+ version = "2.61"
4
}
5
modules/webhook/main.tf
@@ -18,7 +18,9 @@ resource "aws_apigatewayv2_stage" "webhook" {
18
lifecycle {
19
ignore_changes = [
20
// see bug https://github.com/terraform-providers/terraform-provider-aws/issues/12893
21
- default_route_settings
+ default_route_settings,
22
+ // not terraform managed
23
+ deployment_id
24
]
25
26
@@ -29,6 +31,13 @@ resource "aws_apigatewayv2_stage" "webhook" {
29
31
30
32
33
resource "aws_apigatewayv2_integration" "webhook" {
34
+ lifecycle {
35
+ ignore_changes = [
36
37
+ passthrough_behavior
38
+ ]
39
+ }
40
+
41
api_id = aws_apigatewayv2_api.webhook.id
42
integration_type = "AWS_PROXY"
43
0 commit comments