Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Fixing db instance identifier (#5)
Browse files Browse the repository at this point in the history
* fixing variable

* fixing variables

* updating s3_integration

* reverting outputs back to original
  • Loading branch information
revaspeho authored Aug 7, 2023
1 parent 445db87 commit c58f093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ resource "aws_route53_record" "www" {

resource "aws_db_instance_role_association" "s3_integration" {
count = var.s3_integration_role_arn != "" ? 1 : 0
db_instance_identifier = module.mssql-db.db_instance_id
db_instance_identifier = var.name
feature_name = "S3_INTEGRATION"
role_arn = var.s3_integration_role_arn
}
Expand Down

0 comments on commit c58f093

Please sign in to comment.