Skip to content

Commit 5d08044

Browse files
authored
feat!: Add ip_address_type to target group resource, bumped AWS provider version (#255)
1 parent d82d442 commit 5d08044

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,13 +295,13 @@ module "lb" {
295295
| Name | Version |
296296
|------|---------|
297297
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
298-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.67 |
298+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.27.0 |
299299

300300
## Providers
301301

302302
| Name | Version |
303303
|------|---------|
304-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.67 |
304+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.27.0 |
305305

306306
## Modules
307307

examples/complete-alb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.40 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.27.0 |
2424
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 2.0 |
2525
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2626

2727
## Providers
2828

2929
| Name | Version |
3030
|------|---------|
31-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.40 |
31+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.27.0 |
3232
| <a name="provider_null"></a> [null](#provider\_null) | >= 2.0 |
3333
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3434

examples/complete-alb/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 3.40"
7+
version = ">= 4.27.0"
88
}
99
random = {
1010
source = "hashicorp/random"

examples/complete-nlb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.40 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.27.0 |
2424
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.40 |
30+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.27.0 |
3131
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
3232

3333
## Modules

examples/complete-nlb/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 3.40"
7+
version = ">= 4.27.0"
88
}
99
random = {
1010
source = "hashicorp/random"

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ resource "aws_lb_target_group" "main" {
7676
lambda_multi_value_headers_enabled = lookup(var.target_groups[count.index], "lambda_multi_value_headers_enabled", false)
7777
load_balancing_algorithm_type = lookup(var.target_groups[count.index], "load_balancing_algorithm_type", null)
7878
preserve_client_ip = lookup(var.target_groups[count.index], "preserve_client_ip", null)
79+
ip_address_type = lookup(var.target_groups[count.index], "ip_address_type", null)
7980

8081
dynamic "health_check" {
8182
for_each = length(keys(lookup(var.target_groups[count.index], "health_check", {}))) == 0 ? [] : [lookup(var.target_groups[count.index], "health_check", {})]

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 3.67"
7+
version = ">= 4.27.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)