-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
34 lines (28 loc) · 1.03 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
output "rds_instance_id" {
description = "ID of the RDSv3 db instance"
value = local.rds_instance_id
}
output "rds_instance_name" {
description = "Name of the RDSv3 db instance"
value = concat(opentelekomcloud_rds_instance_v3.this.*.name, [""])[0]
}
output "rds_parametergroup_id" {
description = "ID of the RDSv3 db parameter group"
value = opentelekomcloud_rds_parametergroup_v3.this.*.id
}
output "rds_read_replica_ids" {
description = "IDs of the RDSv3 db read replica"
value = opentelekomcloud_rds_read_replica_v3.this.*.id
}
output "rds_instance_nodes" {
description = "List of the RDSv3 db instance nodes"
value = opentelekomcloud_rds_instance_v3.this.*.nodes
}
output "rds_instance_private_ips" {
description = "List of the RDSv3 db instance private IPs"
value = opentelekomcloud_rds_instance_v3.this.*.private_ips
}
output "rds_instance_public_ips" {
description = "List of the RDSv3 db instance public IPs"
value = opentelekomcloud_rds_instance_v3.this.*.public_ips
}