Skip to content

Commit

Permalink
fix datasource references
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerjrr committed Aug 30, 2024
1 parent 8c3fa8e commit 9746910
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ resource "commonfate_proxy_rds_database" "demo" {
proxy_id = var.proxy_id

name = var.rds_name
endpoint = aws_db_instance.database.endpoint
database = aws_db_instance.database.db_name
engine = aws_db_instance.database.engine
region = aws_db_instance.database.region
endpoint = data.aws_db_instance.database.endpoint
database = data.aws_db_instance.database.db_name
engine = data.aws_db_instance.database.engine
region = data.aws_db_instance.database.region

users = var.users
}

0 comments on commit 9746910

Please sign in to comment.