diff --git a/README.md b/README.md index b7b663e..6430a7c 100644 --- a/README.md +++ b/README.md @@ -109,13 +109,13 @@ module "api_gateway" { | Name | Version | |------|---------| | terraform | >= 0.12.26 | -| aws | >= 2.59 | +| aws | >= 3.3.0 | ## Providers | Name | Version | |------|---------| -| aws | >= 2.59 | +| aws | >= 3.3.0 | ## Modules diff --git a/main.tf b/main.tf index 7c09279..06197a5 100644 --- a/main.tf +++ b/main.tf @@ -137,12 +137,6 @@ resource "aws_apigatewayv2_integration" "this" { payload_format_version = lookup(each.value, "payload_format_version", null) timeout_milliseconds = lookup(each.value, "timeout_milliseconds", null) - - # Due to open issue - https://github.com/terraform-providers/terraform-provider-aws/issues/11148#issuecomment-619160589 - # Bug in terraform-aws-provider with perpetual diff - lifecycle { - ignore_changes = [passthrough_behavior] - } } # VPC Link (Private API) diff --git a/versions.tf b/versions.tf index 0d49290..19d1aed 100644 --- a/versions.tf +++ b/versions.tf @@ -2,6 +2,6 @@ terraform { required_version = ">= 0.12.26" required_providers { - aws = ">= 2.59" + aws = ">= 3.3.0" } }