-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoutputs.tf
51 lines (43 loc) · 1.25 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
output "password" {
sensitive = true
description = "RDS master password"
value = local.password
}
output "username" {
description = "DB master user name"
value = local.username
}
output "address" {
description = "The address of the RDS instance."
value = local.address
}
output "database" {
description = "The database name."
value = local.database
}
output "hosted_zone_id" {
description = "The canonical hosted zone ID of the DB instance (to be used in a Route 53 Alias record)."
value = local.hosted_zone_id
}
output "rds_id" {
/*
Deprecated:
Since aws provider v5.0.0 `aws_db_instance.id` returns resource id instead of instance id.
Consider to use `rds_identifier` or `rds_arn` instead.
For the details see https://github.com/hashicorp/terraform-provider-aws/pull/31232.
*/
description = "RDS Resource ID (for aws provider >= v5.0.0) or instance id (for aws provider < v5.0.0)."
value = local.resource_id
}
output "rds_resource_id" {
description = "RDS Resource ID"
value = local.resource_id
}
output "rds_arn" {
description = "The RDS ARN"
value = local.arn
}
output "rds_identifier" {
description = "The RDS instance ID"
value = local.identifier
}