We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f0a55e commit 952a0a7Copy full SHA for 952a0a7
terraform/prod/outputs.tf
@@ -40,3 +40,9 @@ output "rds_instance_id" {
40
value = module.rds.rds_instance_id
41
sensitive = true
42
}
43
+
44
+output "rds_instance_address" {
45
+ description = "The endpoint address of the production RDS instance."
46
+ value = module.rds.rds_instance_address
47
+ sensitive = true
48
+}
terraform/prod/rds/outputs.tf
@@ -16,3 +16,8 @@ output "rds_instance_identifier" {
16
output "rds_instance_id" {
17
value = aws_db_instance.prod.id
18
19
20
21
22
+ value = aws_db_instance.prod.address
23
0 commit comments