Skip to content

Commit

Permalink
fix: adjust aws provider ver constaint closes terraform-aws-modules#93
Browse files Browse the repository at this point in the history
- Adjust minimum version constraint for the aws provider to >= v4.27
- Adjust \modules\flow_logs\modules\s3_log_bucket minimum version
  constraint for aws provider to v4.0.0
  • Loading branch information
AdrianBegg authored and drewmullen committed Jan 24, 2023
1 parent 079bf31 commit b8943a4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .tflint.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

plugin "aws" {
enabled = true
version = "0.15.0"
version = "0.17.1"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,14 +289,14 @@ Please see our [developer documentation](https://github.com/aws-ia/terraform-aws
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.73.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.27.0 |
| <a name="requirement_awscc"></a> [awscc](#requirement\_awscc) | >= 0.36.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.73.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.27.0 |
| <a name="provider_awscc"></a> [awscc](#provider\_awscc) | >= 0.36.0 |

## Modules
Expand Down
3 changes: 2 additions & 1 deletion modules/flow_logs/modules/s3_log_bucket/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
output "bucket_flow_logs_attributes" {
value = aws_s3_bucket.flow_logs
value = aws_s3_bucket.flow_logs
description = "Flow Logs S3 Bucket resource attributes. Full output of aws_s3_bucket."
}
2 changes: 1 addition & 1 deletion modules/flow_logs/modules/s3_log_bucket/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.72.0"
version = ">= 4.0.0"
}
}
}
2 changes: 1 addition & 1 deletion providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.73.0"
version = ">= 4.27.0"
}
awscc = {
source = "hashicorp/awscc"
Expand Down

0 comments on commit b8943a4

Please sign in to comment.