generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathoutputs.tf
99 lines (80 loc) · 2.8 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
output "id" {
description = "The Redshift Cluster ID"
value = module.redshift_cluster.id
}
output "arn" {
description = "Amazon Resource Name (ARN) of cluster"
value = module.redshift_cluster.arn
}
output "cluster_identifier" {
description = "The Cluster Identifier"
value = module.redshift_cluster.cluster_identifier
}
output "cluster_revision_number" {
description = "The specific revision number of the database in the cluster"
value = module.redshift_cluster.cluster_revision_number
}
output "cluster_subnet_group_name" {
description = "The name of a cluster subnet group to be associated with this cluster"
value = module.redshift_cluster.cluster_subnet_group_name
}
output "cluster_parameter_group_name" {
description = "The name of the parameter group to be associated with this cluster"
value = module.redshift_cluster.cluster_parameter_group_name
}
output "port" {
description = "The Port the cluster responds on"
value = module.redshift_cluster.port
}
output "dns_name" {
description = "The DNS name of the cluster"
value = module.redshift_cluster.dns_name
}
output "vpc_security_group_ids" {
description = "The VPC security group Ids associated with the cluster"
value = module.redshift_cluster.vpc_security_group_ids
}
output "endpoint" {
description = "The connection endpoint"
value = module.redshift_cluster.endpoint
}
output "database_name" {
description = "The name of the default database in the Cluster"
value = module.redshift_cluster.database_name
}
output "node_type" {
description = "The type of nodes in the cluster"
value = module.redshift_cluster.node_type
}
output "cluster_type" {
description = "The cluster type"
value = module.redshift_cluster.cluster_type
}
output "redshift_subnet_group_arn" {
description = "Amazon Resource Name (ARN) of the Redshift Subnet group name"
value = module.redshift_cluster.redshift_subnet_group_arn
}
output "redshift_subnet_group_id" {
description = "The Redshift Subnet Group ID"
value = module.redshift_cluster.redshift_subnet_group_id
}
output "redshift_parameter_group_arn" {
description = "Amazon Resource Name (ARN) of the Redshift parameter group"
value = module.redshift_cluster.redshift_parameter_group_arn
}
output "redshift_parameter_group_id" {
description = "The Redshift parameter group ID"
value = module.redshift_cluster.redshift_parameter_group_id
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}
output "public_subnet_cidrs" {
value = module.subnet.public_subnet_cidrs
description = "Public subnet CIDR blocks"
}
output "private_subnet_cidrs" {
value = module.subnet.private_subnet_cidrs
description = "Private subnet CIDR blocks"
}