forked from cloudposse/terraform-aws-rds-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
79 lines (64 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
output "database_name" {
value = module.rds_cluster.database_name
description = "Database name"
}
output "master_username" {
value = module.rds_cluster.master_username
description = "Username for the master DB user"
}
output "cluster_identifier" {
value = module.rds_cluster.cluster_identifier
description = "Cluster Identifier"
}
output "arn" {
value = module.rds_cluster.arn
description = "Amazon Resource Name (ARN) of the cluster"
}
output "endpoint" {
value = module.rds_cluster.endpoint
description = "The DNS address of the RDS instance"
}
output "reader_endpoint" {
value = module.rds_cluster.reader_endpoint
description = "A read-only endpoint for the Aurora cluster, automatically load-balanced across replicas"
}
output "master_host" {
value = module.rds_cluster.master_host
description = "DB Master hostname"
}
output "replicas_host" {
value = module.rds_cluster.replicas_host
description = "Replicas hostname"
}
output "dbi_resource_ids" {
value = module.rds_cluster.dbi_resource_ids
description = "List of the region-unique, immutable identifiers for the DB instances in the cluster"
}
output "cluster_resource_id" {
value = module.rds_cluster.cluster_resource_id
description = "The region-unique, immutable identifie of the cluster"
}
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDR blocks"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDR blocks"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}
output "security_group_id" {
value = module.rds_cluster.security_group_id
description = "Security Group ID"
}
output "security_group_arn" {
value = module.rds_cluster.security_group_arn
description = "Security Group ARN"
}
output "security_group_name" {
value = module.rds_cluster.security_group_name
description = "Security Group name"
}