Skip to content

Commit

Permalink
feat: RDS/Aurora Provider Update (#129)
Browse files Browse the repository at this point in the history
* update rds provider

* move data sources
  • Loading branch information
George Scott authored Aug 28, 2023
1 parent 03cb432 commit 394fa56
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions data.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
data "aws_s3_bucket" "file_storage" {
depends_on = [module.file_storage]
bucket = local.bucket_name
}

data "aws_sqs_queue" "file_storage" {
count = local.use_internal_queue ? 0 : 1
depends_on = [module.file_storage]
name = local.bucket_queue_name
}
2 changes: 1 addition & 1 deletion modules/database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ resource "aws_rds_cluster_parameter_group" "default" {

module "aurora" {
source = "terraform-aws-modules/rds-aurora/aws"
version = "6.2.0"
version = "7.7.1"

allow_major_version_upgrade = true
allowed_cidr_blocks = var.allowed_cidr_blocks
Expand Down

0 comments on commit 394fa56

Please sign in to comment.