Skip to content

Commit a09e2c4

Browse files
authored
Bump upstream module version and min TF and AWS provider versions (#140)
* update codebuild and webhooks modules to latest - require aws provider >= 5.0 and tf >= 1.3 * Update docs
1 parent 6384b7b commit a09e2c4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ Available targets:
169169
170170
| Name | Version |
171171
|------|---------|
172-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
173-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.9.0 |
172+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
173+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
174174
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.1 |
175175
176176
## Providers
177177
178178
| Name | Version |
179179
|------|---------|
180-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.9.0 |
180+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
181181
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.1 |
182182
183183
## Modules
@@ -190,7 +190,7 @@ Available targets:
190190
| <a name="module_codepipeline_label"></a> [codepipeline\_label](#module\_codepipeline\_label) | cloudposse/label/null | 0.25.0 |
191191
| <a name="module_codepipeline_s3_policy_label"></a> [codepipeline\_s3\_policy\_label](#module\_codepipeline\_s3\_policy\_label) | cloudposse/label/null | 0.25.0 |
192192
| <a name="module_codestar_label"></a> [codestar\_label](#module\_codestar\_label) | cloudposse/label/null | 0.25.0 |
193-
| <a name="module_github_webhooks"></a> [github\_webhooks](#module\_github\_webhooks) | cloudposse/repository-webhooks/github | 0.13.0 |
193+
| <a name="module_github_webhooks"></a> [github\_webhooks](#module\_github\_webhooks) | cloudposse/repository-webhooks/github | 0.14.0 |
194194
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
195195
196196
## Resources

docs/terraform.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
| Name | Version |
55
|------|---------|
6-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
7-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.9.0 |
6+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
7+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
88
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.1 |
99

1010
## Providers
1111

1212
| Name | Version |
1313
|------|---------|
14-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.9.0 |
14+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
1515
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.1 |
1616

1717
## Modules
@@ -24,7 +24,7 @@
2424
| <a name="module_codepipeline_label"></a> [codepipeline\_label](#module\_codepipeline\_label) | cloudposse/label/null | 0.25.0 |
2525
| <a name="module_codepipeline_s3_policy_label"></a> [codepipeline\_s3\_policy\_label](#module\_codepipeline\_s3\_policy\_label) | cloudposse/label/null | 0.25.0 |
2626
| <a name="module_codestar_label"></a> [codestar\_label](#module\_codestar\_label) | cloudposse/label/null | 0.25.0 |
27-
| <a name="module_github_webhooks"></a> [github\_webhooks](#module\_github\_webhooks) | cloudposse/repository-webhooks/github | 0.13.0 |
27+
| <a name="module_github_webhooks"></a> [github\_webhooks](#module\_github\_webhooks) | cloudposse/repository-webhooks/github | 0.14.0 |
2828
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
2929

3030
## Resources
@@ -66,7 +66,7 @@
6666
| <a name="input_badge_enabled"></a> [badge\_enabled](#input\_badge\_enabled) | Generates a publicly-accessible URL for the projects build badge. Available as badge\_url attribute when enabled | `bool` | `false` | no |
6767
| <a name="input_branch"></a> [branch](#input\_branch) | Branch of the GitHub repository, _e.g._ `master` | `string` | n/a | yes |
6868
| <a name="input_build_compute_type"></a> [build\_compute\_type](#input\_build\_compute\_type) | `CodeBuild` instance size. Possible values are: `BUILD_GENERAL1_SMALL` `BUILD_GENERAL1_MEDIUM` `BUILD_GENERAL1_LARGE` | `string` | `"BUILD_GENERAL1_SMALL"` | no |
69-
| <a name="input_build_image"></a> [build\_image](#input\_build\_image) | Docker image for build environment, _e.g._ `aws/codebuild/docker:docker:17.09.0` | `string` | `"aws/codebuild/docker:17.09.0"` | no |
69+
| <a name="input_build_image"></a> [build\_image](#input\_build\_image) | Docker image for build environment, https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html | `string` | `"aws/codebuild/amazonlinux2-x86_64-standard:5.0"` | no |
7070
| <a name="input_build_timeout"></a> [build\_timeout](#input\_build\_timeout) | How long in minutes, from 5 to 480 (8 hours), for AWS CodeBuild to wait until timing out any related build that does not get marked as completed | `number` | `60` | no |
7171
| <a name="input_build_type"></a> [build\_type](#input\_build\_type) | The type of build environment, e.g. 'LINUX\_CONTAINER' or 'WINDOWS\_CONTAINER' or 'ARM\_CONTAINER' | `string` | `"LINUX_CONTAINER"` | no |
7272
| <a name="input_buildspec"></a> [buildspec](#input\_buildspec) | Declaration to use for building the project. [For more info](http://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html) | `string` | `""` | no |

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ resource "aws_codepipeline_webhook" "webhook" {
450450

451451
module "github_webhooks" {
452452
source = "cloudposse/repository-webhooks/github"
453-
version = "0.13.0"
453+
version = "0.14.0"
454454

455455
enabled = module.this.enabled && var.webhook_enabled ? true : false
456456
github_repositories = [var.repo_name]

versions.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
2-
required_version = ">= 1.0.0"
2+
required_version = ">= 1.3"
33

44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.9.0"
7+
version = ">= 5.0"
88
}
99
random = {
1010
source = "hashicorp/random"

0 commit comments

Comments
 (0)