Skip to content

Commit 982f631

Browse files
authored
AWS provider V4 compatibility (#164)
* AWS provider V4 compatibility * AWS provider V4 compatibility
1 parent a711d28 commit 982f631

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,14 @@ Available targets:
201201
| Name | Version |
202202
|------|---------|
203203
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
204-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.0 |
204+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.0, < 5 |
205205
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 2.0 |
206206

207207
## Providers
208208

209209
| Name | Version |
210210
|------|---------|
211-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.0 |
211+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.0, < 5 |
212212
| <a name="provider_null"></a> [null](#provider\_null) | >= 2.0 |
213213

214214
## Modules

docs/terraform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
| Name | Version |
55
|------|---------|
66
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
7-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.0 |
7+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.0, < 5 |
88
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 2.0 |
99

1010
## Providers
1111

1212
| Name | Version |
1313
|------|---------|
14-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.0 |
14+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.0, < 5 |
1515
| <a name="provider_null"></a> [null](#provider\_null) | >= 2.0 |
1616

1717
## Modules

eni.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ resource "aws_network_interface_attachment" "additional" {
2626
resource "aws_eip" "additional" {
2727
#bridgecrew:skip=BC_AWS_NETWORKING_48: Skiping `Ensure all EIP addresses allocated to a VPC are attached to EC2 instances` because it is incorrectly flagging that this instance does not belong to a VPC even though subnet_id is configured.
2828
count = local.additional_ips_count
29-
domain = "vpc"
29+
vpc = true
3030
network_interface = aws_network_interface.additional[count.index].id
3131
}

0 commit comments

Comments
 (0)