forked from cloudposse/terraform-aws-rds-db-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
116 lines (93 loc) · 3.38 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
}
output "instance_id" {
value = module.rds_instance.instance_id
description = "ID of the instance"
}
output "instance_address" {
value = module.rds_instance.instance_address
description = "Address of the instance"
}
output "instance_endpoint" {
value = module.rds_instance.instance_endpoint
description = "DNS Endpoint of the instance"
}
output "subnet_group_id" {
value = module.rds_instance.subnet_group_id
description = "ID of the Subnet Group"
}
output "security_group_id" {
value = module.rds_instance.security_group_id
description = "ID of the Security Group"
}
output "parameter_group_id" {
value = module.rds_instance.parameter_group_id
description = "ID of the Parameter Group"
}
output "option_group_id" {
value = module.rds_instance.option_group_id
description = "ID of the Option Group"
}
output "hostname" {
value = module.rds_instance.hostname
description = "DNS host name of the instance"
}
output "proxy_id" {
value = module.rds_proxy.proxy_id
description = "Proxy ID"
}
output "proxy_arn" {
value = module.rds_proxy.proxy_arn
description = "Proxy ARN"
}
output "proxy_endpoint" {
value = module.rds_proxy.proxy_endpoint
description = "Proxy endpoint"
}
output "proxy_target_endpoint" {
value = module.rds_proxy.proxy_target_endpoint
description = "Hostname for the target RDS DB Instance. Only returned for `RDS_INSTANCE` type"
}
output "proxy_target_id" {
value = module.rds_proxy.proxy_target_id
description = "Identifier of `db_proxy_name`, `target_group_name`, `target type` (e.g. `RDS_INSTANCE` or `TRACKED_CLUSTER`), and resource identifier separated by forward slashes (`/`)"
}
output "proxy_target_port" {
value = module.rds_proxy.proxy_target_port
description = "Port for the target RDS DB instance or Aurora DB cluster"
}
output "proxy_target_rds_resource_id" {
value = module.rds_proxy.proxy_target_rds_resource_id
description = "Identifier representing the DB instance or DB cluster target"
}
output "proxy_target_target_arn" {
value = module.rds_proxy.proxy_target_target_arn
description = "Amazon Resource Name (ARN) for the DB instance or DB cluster"
}
output "proxy_target_tracked_cluster_id" {
value = module.rds_proxy.proxy_target_tracked_cluster_id
description = "DB Cluster identifier for the DB instance target. Not returned unless manually importing an `RDS_INSTANCE` target that is part of a DB cluster"
}
output "proxy_target_type" {
value = module.rds_proxy.proxy_target_type
description = "Type of target. e.g. `RDS_INSTANCE` or `TRACKED_CLUSTER`"
}
output "proxy_default_target_group_arn" {
value = module.rds_proxy.proxy_default_target_group_arn
description = "The Amazon Resource Name (ARN) representing the default target group"
}
output "proxy_default_target_group_name" {
value = module.rds_proxy.proxy_default_target_group_name
description = "The name of the default target group"
}
output "proxy_iam_role_arn" {
value = module.rds_proxy.proxy_iam_role_arn
description = "The ARN of the IAM role that the proxy uses to access secrets in AWS Secrets Manager"
}