-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathoutputs.tf
64 lines (52 loc) · 1.76 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
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC ID"
}
output "master_username" {
value = module.documentdb_cluster.master_username
description = "DocumentDB Username for the master DB user"
}
output "cluster_name" {
value = module.documentdb_cluster.cluster_name
description = "DocumentDB Cluster Identifier"
}
output "arn" {
value = module.documentdb_cluster.arn
description = "Amazon Resource Name (ARN) of the DocumentDB cluster"
}
output "endpoint" {
value = module.documentdb_cluster.endpoint
description = "Endpoint of the DocumentDB cluster"
}
output "reader_endpoint" {
value = module.documentdb_cluster.reader_endpoint
description = "Read-only endpoint of the DocumentDB cluster, automatically load-balanced across replicas"
}
output "master_host" {
value = module.documentdb_cluster.master_host
description = "DocumentDB master hostname"
}
output "replicas_host" {
value = module.documentdb_cluster.replicas_host
description = "DocumentDB replicas hostname"
}
output "security_group_id" {
value = module.documentdb_cluster.security_group_id
description = "ID of the DocumentDB cluster Security Group"
}
output "security_group_arn" {
value = module.documentdb_cluster.security_group_arn
description = "ARN of the DocumentDB cluster Security Group"
}
output "security_group_name" {
value = module.documentdb_cluster.security_group_name
description = "Name of the DocumentDB cluster Security Group"
}