Skip to content

Commit 2802ae3

Browse files
authored
Allow AWS provider version >= 4.9.0 (#236)
1 parent b2e5e7f commit 2802ae3

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/auto-release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ version-resolver:
1717
- 'bugfix'
1818
- 'bug'
1919
- 'hotfix'
20-
- 'no-release'
2120
default: 'minor'
2221

2322
categories:

.github/renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
":preserveSemverRanges"
55
],
66
"labels": ["auto-update"],
7+
"dependencyDashboardAutoclose": true,
78
"enabledManagers": ["terraform"],
89
"terraform": {
910
"ignorePaths": ["**/context.tf", "examples/**"]
1011
}
1112
}
12-

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -436,15 +436,15 @@ Available targets:
436436
| Name | Version |
437437
|------|---------|
438438
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
439-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.64.0, < 4.0.0 |
439+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.64.0, != 4.0.0, != 4.1.0, != 4.2.0, != 4.3.0, != 4.4.0, != 4.5.0, != 4.6.0, != 4.7.0, != 4.8.0 |
440440
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.2 |
441441
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.7 |
442442

443443
## Providers
444444

445445
| Name | Version |
446446
|------|---------|
447-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.64.0, < 4.0.0 |
447+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.64.0, != 4.0.0, != 4.1.0, != 4.2.0, != 4.3.0, != 4.4.0, != 4.5.0, != 4.6.0, != 4.7.0, != 4.8.0 |
448448
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.2 |
449449
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.7 |
450450

@@ -778,7 +778,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
778778

779779
[![README Footer][readme_footer_img]][readme_footer_link]
780780
[![Beacon][beacon]][website]
781-
781+
<!-- markdownlint-disable -->
782782
[logo]: https://cloudposse.com/logo-300x69.svg
783783
[docs]: https://cpco.io/docs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-cloudfront-s3-cdn&utm_content=docs
784784
[website]: https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-cloudfront-s3-cdn&utm_content=website
@@ -809,3 +809,4 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
809809
[share_googleplus]: https://plus.google.com/share?url=https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn
810810
[share_email]: mailto:?subject=terraform-aws-cloudfront-s3-cdn&body=https://github.com/cloudposse/terraform-aws-cloudfront-s3-cdn
811811
[beacon]: https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/terraform-aws-cloudfront-s3-cdn?pixel&cs=github&cm=readme&an=terraform-aws-cloudfront-s3-cdn
812+
<!-- markdownlint-restore -->

docs/terraform.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
| Name | Version |
55
|------|---------|
66
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
7-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.64.0, < 4.0.0 |
7+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.64.0, != 4.0.0, != 4.1.0, != 4.2.0, != 4.3.0, != 4.4.0, != 4.5.0, != 4.6.0, != 4.7.0, != 4.8.0 |
88
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.2 |
99
| <a name="requirement_time"></a> [time](#requirement\_time) | >= 0.7 |
1010

1111
## Providers
1212

1313
| Name | Version |
1414
|------|---------|
15-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.64.0, < 4.0.0 |
15+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.64.0, != 4.0.0, != 4.1.0, != 4.2.0, != 4.3.0, != 4.4.0, != 4.5.0, != 4.6.0, != 4.7.0, != 4.8.0 |
1616
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.2 |
1717
| <a name="provider_time"></a> [time](#provider\_time) | >= 0.7 |
1818

versions.tf

+1-1
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.64.0, < 4.0.0"
7+
version = ">= 3.64.0, != 4.0.0, != 4.1.0, != 4.2.0, != 4.3.0, != 4.4.0, != 4.5.0, != 4.6.0, != 4.7.0, != 4.8.0"
88
}
99
random = {
1010
source = "hashicorp/random"

0 commit comments

Comments
 (0)