Skip to content

Commit b96cf0c

Browse files
committed
bump all the versions
1 parent 16b23c5 commit b96cf0c

11 files changed

Lines changed: 147 additions & 24 deletions

File tree

.terraform-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.6
1+
0.14.11

account/.terraform.lock.hcl

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

account/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
44
## Requirements
55

6-
| Name | Version |
7-
|------|---------|
8-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
6+
No requirements.
97

108
## Providers
119

@@ -17,11 +15,11 @@ No providers.
1715
|------|--------|---------|
1816
| <a name="module_backend"></a> [backend](#module\_backend) | rhythmictech/backend/aws | 2.1.0 |
1917
| <a name="module_cloudtrail_bucket"></a> [cloudtrail\_bucket](#module\_cloudtrail\_bucket) | rhythmictech/cloudtrail-bucket/aws | ~> 1.2.0 |
20-
| <a name="module_cloudtrail_logging"></a> [cloudtrail\_logging](#module\_cloudtrail\_logging) | rhythmictech/cloudtrail-logging/aws | ~> 1.1.0 |
18+
| <a name="module_cloudtrail_logging"></a> [cloudtrail\_logging](#module\_cloudtrail\_logging) | rhythmictech/cloudtrail-logging/aws | ~> 1.3.0 |
2119
| <a name="module_does_workspace_match_env"></a> [does\_workspace\_match\_env](#module\_does\_workspace\_match\_env) | rhythmictech/errorcheck/terraform | ~> 1.0.0 |
2220
| <a name="module_iam_password_policy"></a> [iam\_password\_policy](#module\_iam\_password\_policy) | rhythmictech/iam-password-policy/aws | 1.0.0 |
2321
| <a name="module_rhythmic_iam_roles"></a> [rhythmic\_iam\_roles](#module\_rhythmic\_iam\_roles) | rhythmictech/rhythmic-iam-roles/aws | ~> 1.1.0 |
24-
| <a name="module_s3logging_bucket"></a> [s3logging\_bucket](#module\_s3logging\_bucket) | rhythmictech/s3logging-bucket/aws | ~> 1.0.1 |
22+
| <a name="module_s3logging_bucket"></a> [s3logging\_bucket](#module\_s3logging\_bucket) | rhythmictech/s3logging-bucket/aws | ~> 2.0.0 |
2523
| <a name="module_tags"></a> [tags](#module\_tags) | rhythmictech/tags/terraform | ~> 1.1.0 |
2624

2725
## Resources
@@ -48,6 +46,6 @@ No resources.
4846
| Name | Description |
4947
|------|-------------|
5048
| <a name="output_cloudtrail_log_group"></a> [cloudtrail\_log\_group](#output\_cloudtrail\_log\_group) | CloudTrail CloudWatch log group |
51-
| <a name="output_s3_bucket_access_logging"></a> [s3\_bucket\_access\_logging](#output\_s3\_bucket\_access\_logging) | S3 bucket to receive S3 bucket access logs |
49+
| <a name="output_s3_bucket_access_logging_bucket"></a> [s3\_bucket\_access\_logging\_bucket](#output\_s3\_bucket\_access\_logging\_bucket) | S3 bucket to receive S3 bucket access logs |
5250
| <a name="output_s3_bucket_access_logging_domain_name"></a> [s3\_bucket\_access\_logging\_domain\_name](#output\_s3\_bucket\_access\_logging\_domain\_name) | S3 bucket to receive S3 bucket access logs |
5351
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

account/main.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ module "rhythmic_iam_roles" {
2424

2525
module "s3logging_bucket" {
2626
source = "rhythmictech/s3logging-bucket/aws"
27-
version = "~> 1.0.1"
27+
version = "~> 2.0.0"
2828

2929
bucket_suffix = "account"
30-
region = var.region
3130
tags = module.tags.tags_no_name
3231

3332
# store for 1 yr
@@ -43,14 +42,14 @@ module "s3logging_bucket" {
4342
module "cloudtrail_bucket" {
4443
source = "rhythmictech/cloudtrail-bucket/aws"
4544
version = "~> 1.2.0"
46-
logging_bucket = module.s3logging_bucket.s3logging_bucket_name
45+
logging_bucket = module.s3logging_bucket.s3_bucket_name
4746
region = var.region
4847
tags = module.tags.tags_no_name
4948
}
5049

5150
module "cloudtrail_logging" {
5251
source = "rhythmictech/cloudtrail-logging/aws"
53-
version = "~> 1.1.0"
52+
version = "~> 1.3.0"
5453
region = var.region
5554
cloudtrail_bucket = module.cloudtrail_bucket.s3_bucket_name
5655
kms_key_id = module.cloudtrail_bucket.kms_key_id

account/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ output "cloudtrail_log_group" {
88
value = module.cloudtrail_logging.cloudwatch_loggroup_name
99
}
1010

11-
output "s3_bucket_access_logging" {
11+
output "s3_bucket_access_logging_bucket" {
1212
description = "S3 bucket to receive S3 bucket access logs"
13-
value = module.s3logging_bucket.s3logging_bucket_name
13+
value = module.s3logging_bucket.s3_bucket_name
1414
}
1515

1616
output "s3_bucket_access_logging_domain_name" {
1717
description = "S3 bucket to receive S3 bucket access logs"
18-
value = module.s3logging_bucket.s3logging_bucket_domain_name
18+
value = module.s3logging_bucket.s3_bucket_domain_name
1919
}

account/setup/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#tfsec:ignore:aws-dynamodb-table-customer-key,aws-dynamodb-enable-recovery
2+
#tfsec:ignore:aws-dynamodb-table-customer-key tfsec:ignore:aws-dynamodb-enable-recovery
33
module "backend" {
44
source = "rhythmictech/backend/aws"
55
version = "2.1.0"

common/.terraform.lock.hcl

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/common.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ provider "aws" {
77

88
terraform {
99
backend "s3" {}
10-
11-
required_version = ">= 0.13.0"
1210
}
1311

1412
# Intentionally throws an error if the workspace doesn't match the env

network/.terraform.lock.hcl

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

network/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
44
## Requirements
55

6-
| Name | Version |
7-
|------|---------|
8-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
6+
No requirements.
97

108
## Providers
119

1210
| Name | Version |
1311
|------|---------|
14-
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
12+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 3.68.0 |
1513
| <a name="provider_terraform"></a> [terraform](#provider\_terraform) | n/a |
1614

1715
## Modules
@@ -20,7 +18,7 @@
2018
|------|--------|---------|
2119
| <a name="module_does_workspace_match_env"></a> [does\_workspace\_match\_env](#module\_does\_workspace\_match\_env) | rhythmictech/errorcheck/terraform | ~> 1.0.0 |
2220
| <a name="module_tags"></a> [tags](#module\_tags) | rhythmictech/tags/terraform | ~> 1.1.0 |
23-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 2.44.0 |
21+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 3.11.0 |
2422
| <a name="module_vpcflowlogs"></a> [vpcflowlogs](#module\_vpcflowlogs) | rhythmictech/vpcflowlogs/aws | ~> 1.1.2 |
2523

2624
## Resources

0 commit comments

Comments
 (0)