Skip to content

Commit 0bd6b20

Browse files
committed
feat: add support for aws provider v4.x
1 parent 8d1e3ca commit 0bd6b20

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Added support for AWS provider `v4.x`
13+
1014
## [0.9.1]
1115

1216
### Added

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://github.com/mineiros-io/terraform-aws-cognito-user-pool/workflows/CI/CD%20Pipeline/badge.svg)](https://github.com/mineiros-io/terraform-aws-cognito-user-pool/actions)
44
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/mineiros-io/terraform-aws-cognito-user-pool.svg?label=latest&sort=semver)](https://github.com/mineiros-io/terraform-aws-cognito-user-pool/releases)
55
[![Terraform Version](https://img.shields.io/badge/terraform-1.x%20|%200.15%20|%200.14%20|%200.13%20|%200.12.20+-623CE4.svg?logo=terraform)](https://github.com/hashicorp/terraform/releases)
6-
[![AWS Provider Version](https://img.shields.io/badge/AWS-3.19+-F8991D.svg?logo=terraform)](https://github.com/terraform-providers/terraform-provider-aws/releases)
6+
[![AWS Provider Version](https://img.shields.io/badge/AWS-3.50+-F8991D.svg?logo=terraform)](https://github.com/terraform-providers/terraform-provider-aws/releases)
77
[![Join Slack](https://img.shields.io/badge/[email protected]?logo=slack)](https://mineiros.io/slack)
88

99
# terraform-aws-cognito-user-pool
@@ -13,9 +13,7 @@ A [Terraform] module for deploying and managing
1313
on [Amazon Web Services (AWS)][AWS].
1414

1515
*This module supports Terraform v1.x, v0.15, v0.14, v0.13 as well as v0.12.20 and above
16-
and is compatible with the Terraform AWS provider v3.19 and above.*
17-
18-
The last version supporting Terraform AWS provider v2.x is v0.4.1.
16+
and is compatible with the Terraform AWS provider v3.50 and above.
1917

2018

2119
- [Module Features](#module-features)

README.tfdoc.hcl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ header {
2121
}
2222

2323
badge "tf-aws-provider" {
24-
image = "https://img.shields.io/badge/AWS-3.19+-F8991D.svg?logo=terraform"
24+
image = "https://img.shields.io/badge/AWS-3.50+-F8991D.svg?logo=terraform"
2525
url = "https://github.com/terraform-providers/terraform-provider-aws/releases"
2626
text = "AWS Provider Version"
2727
}
@@ -42,9 +42,7 @@ section {
4242
on [Amazon Web Services (AWS)][AWS].
4343
4444
*This module supports Terraform v1.x, v0.15, v0.14, v0.13 as well as v0.12.20 and above
45-
and is compatible with the Terraform AWS provider v3.19 and above.*
46-
47-
The last version supporting Terraform AWS provider v2.x is v0.4.1.
45+
and is compatible with the Terraform AWS provider v3.50 and above.
4846
END
4947

5048
section {

test/unit-complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ terraform {
1414
required_providers {
1515
aws = {
1616
source = "hashicorp/aws"
17-
version = "~> 3.50"
17+
version = "~> 4.0"
1818
}
1919
}
2020
}

test/unit-disabled/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ terraform {
1414
required_providers {
1515
aws = {
1616
source = "hashicorp/aws"
17-
version = "~> 3.50"
17+
version = "~> 4.0"
1818
}
1919
}
2020
}

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ terraform {
66
required_version = ">= 0.12.20, < 2.0"
77

88
required_providers {
9-
aws = ">= 3.50, < 4.0"
9+
aws = ">= 3.50, < 5.0"
1010
}
1111
}

0 commit comments

Comments
 (0)