Skip to content

Commit

Permalink
fix module outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Oct 21, 2024
1 parent 439fc4e commit 48e1940
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/aurora/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ output "aurora_endpoint" {
}

output "aurora_id" {
value = aws_rds_cluster.id
value = aws_rds_cluster.aurora_cluster.id
description = "RDS Cluster Identifier"
}

output "aurora_resource_id" {
value = aws_rds_cluster.resource_id
value = aws_rds_cluster.aurora_cluster.resource_id
description = "DB Resource Identifier"
}

output "aurora_cluster_identifier" {
value = aws_rds_cluster.cluster_identifier
value = aws_rds_cluster.aurora_cluster.cluster_identifier
description = "RDS Cluster Identifier"
}

output "aurora_cluster_resource_id" {
value = aws_rds_cluster.cluster_resource_id
value = aws_rds_cluster.aurora_cluster.cluster_resource_id
description = "RDS Cluster Resource ID"
}

Expand Down

0 comments on commit 48e1940

Please sign in to comment.