Skip to content

Commit

Permalink
fix: Remove workaround related to passthrough_behavior for older prov…
Browse files Browse the repository at this point in the history
…iders (#24)
  • Loading branch information
jamesla authored Mar 6, 2021
1 parent 3827654 commit 799dfd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 0 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ terraform {
required_version = ">= 0.12.26"

required_providers {
aws = ">= 2.59"
aws = ">= 3.3.0"
}
}

0 comments on commit 799dfd3

Please sign in to comment.