forked from terraform-aws-modules/terraform-aws-rds-aurora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
53 lines (43 loc) · 1.52 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
52
// aws_rds_cluster
output "this_rds_cluster_id" {
description = "The ID of the cluster"
value = module.aurora.this_rds_cluster_id
}
output "this_rds_cluster_resource_id" {
description = "The Resource ID of the cluster"
value = module.aurora.this_rds_cluster_resource_id
}
output "this_rds_cluster_endpoint" {
description = "The cluster endpoint"
value = module.aurora.this_rds_cluster_endpoint
}
output "this_rds_cluster_reader_endpoint" {
description = "The cluster reader endpoint"
value = module.aurora.this_rds_cluster_reader_endpoint
}
output "this_rds_cluster_database_name" {
description = "Name for an automatically created database on cluster creation"
value = module.aurora.this_rds_cluster_database_name
}
output "this_rds_cluster_master_password" {
description = "The master password"
value = module.aurora.this_rds_cluster_master_password
}
output "this_rds_cluster_port" {
description = "The port"
value = module.aurora.this_rds_cluster_port
}
output "this_rds_cluster_master_username" {
description = "The master username"
value = module.aurora.this_rds_cluster_master_username
}
// aws_rds_cluster_instance
output "this_rds_cluster_instance_endpoints" {
description = "A list of all cluster instance endpoints"
value = module.aurora.this_rds_cluster_instance_endpoints
}
// aws_security_group
output "this_security_group_id" {
description = "The security group ID of the cluster"
value = module.aurora.this_security_group_id
}