Skip to content

Commit 2c23fe0

Browse files
authored
fix: update dependencies (#9)
1 parent 5ee12b5 commit 2c23fe0

File tree

9 files changed

+20
-15
lines changed

9 files changed

+20
-15
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ such as extended backups, user management, and autoscaling.
9999

100100
| Name | Description |
101101
|------|-------------|
102-
| <a name="output_cluster_endpoint"></a> [cluster\_endpoint](#output\_cluster\_endpoint) | n/a |
103-
| <a name="output_instance_endpoint"></a> [instance\_endpoint](#output\_instance\_endpoint) | n/a |
102+
| <a name="output_cluster_endpoint"></a> [cluster\_endpoint](#output\_cluster\_endpoint) | The cluster endpoint |
103+
| <a name="output_instance_endpoint"></a> [instance\_endpoint](#output\_instance\_endpoint) | The instance endpoint |
104104

105105
## Providers
106106

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ module "db_event_subscription" {
133133
module "backup" {
134134
count = var.enable_enhanced_backups ? 1 : 0
135135

136-
source = "github.com/geekcell/terraform-aws-backup?ref=main"
136+
source = "github.com/geekcell/terraform-aws-backup?ref=v1"
137137

138138
# Vault name for this backup
139139
vault_name = "${var.cluster_identifier}-rds"

modules/db_event_subscription/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resource "aws_db_event_subscription" "main" {
1313
}
1414

1515
module "notification" {
16-
source = "github.com/geekcell/terraform-aws-sns-email-notification?ref=v1.1"
16+
source = "github.com/geekcell/terraform-aws-sns-email-notification?ref=v1"
1717

1818
name = var.name
1919
email_addresses = var.recipients

modules/db_proxy_secret/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "aws_secretsmanager_secret_version" "main" {
2727
}
2828

2929
module "kms" {
30-
source = "github.com/geekcell/terraform-aws-kms?ref=main"
30+
source = "github.com/geekcell/terraform-aws-kms?ref=v1"
3131

3232
alias = var.name
3333

modules/rds_cluster/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242

4343
| Name | Description |
4444
|------|-------------|
45-
| <a name="output_arn"></a> [arn](#output\_arn) | n/a |
46-
| <a name="output_endpoint"></a> [endpoint](#output\_endpoint) | n/a |
47-
| <a name="output_id"></a> [id](#output\_id) | n/a |
45+
| <a name="output_arn"></a> [arn](#output\_arn) | The ARN of the cluster |
46+
| <a name="output_endpoint"></a> [endpoint](#output\_endpoint) | The cluster endpoint |
47+
| <a name="output_id"></a> [id](#output\_id) | The ID of the cluster |
4848

4949
## Providers
5050

modules/rds_cluster/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module "autoscaling" {
8282

8383
module "kms" {
8484
for_each = toset(["storage"])
85-
source = "github.com/geekcell/terraform-aws-kms?ref=main"
85+
source = "github.com/geekcell/terraform-aws-kms?ref=v1"
8686
alias = format("/rds/cluster/%s/%s", var.cluster_identifier, each.key)
8787
}
8888

modules/rds_cluster/outputs.tf

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
output "arn" {
2-
value = aws_rds_cluster.main.arn
2+
description = "The ARN of the cluster"
3+
value = aws_rds_cluster.main.arn
34
}
45

56
output "id" {
6-
value = aws_rds_cluster.main.id
7+
description = "The ID of the cluster"
8+
value = aws_rds_cluster.main.id
79
}
810

911
output "endpoint" {
10-
value = aws_rds_cluster.main.endpoint
12+
description = "The cluster endpoint"
13+
value = aws_rds_cluster.main.endpoint
1114
}

modules/rds_cluster_instance/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module "db_enhanced_monitoring" {
5151
module "kms" {
5252
for_each = toset(["performance_insights"])
5353

54-
source = "github.com/geekcell/terraform-aws-kms?ref=main"
54+
source = "github.com/geekcell/terraform-aws-kms?ref=v1"
5555
alias = format("alias/rds/cluster/%s/instance/%s/%s", var.identifier, var.identifier, each.key)
5656
}
5757

outputs.tf

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
output "cluster_endpoint" {
2-
value = module.rds_cluster.endpoint
2+
description = "The cluster endpoint"
3+
value = module.rds_cluster.endpoint
34
}
45

56
output "instance_endpoint" {
6-
value = module.rds_cluster_instance.endpoint
7+
description = "The instance endpoint"
8+
value = module.rds_cluster_instance.endpoint
79
}

0 commit comments

Comments
 (0)