|
1 | 1 | # aws_rds_cluster |
2 | | -output "this_rds_cluster_id" { |
| 2 | +output "rds_cluster_id" { |
3 | 3 | description = "The ID of the cluster" |
4 | | - value = module.aurora.this_rds_cluster_id |
| 4 | + value = module.aurora.rds_cluster_id |
5 | 5 | } |
6 | 6 |
|
7 | | -output "this_rds_cluster_resource_id" { |
| 7 | +output "rds_cluster_resource_id" { |
8 | 8 | description = "The Resource ID of the cluster" |
9 | | - value = module.aurora.this_rds_cluster_resource_id |
| 9 | + value = module.aurora.rds_cluster_resource_id |
10 | 10 | } |
11 | 11 |
|
12 | | -output "this_rds_cluster_endpoint" { |
| 12 | +output "rds_cluster_endpoint" { |
13 | 13 | description = "The cluster endpoint" |
14 | | - value = module.aurora.this_rds_cluster_endpoint |
| 14 | + value = module.aurora.rds_cluster_endpoint |
15 | 15 | } |
16 | 16 |
|
17 | | -output "this_rds_cluster_reader_endpoint" { |
| 17 | +output "rds_cluster_reader_endpoint" { |
18 | 18 | description = "The cluster reader endpoint" |
19 | | - value = module.aurora.this_rds_cluster_reader_endpoint |
| 19 | + value = module.aurora.rds_cluster_reader_endpoint |
20 | 20 | } |
21 | 21 |
|
22 | | -output "this_rds_cluster_database_name" { |
| 22 | +output "rds_cluster_database_name" { |
23 | 23 | description = "Name for an automatically created database on cluster creation" |
24 | | - value = module.aurora.this_rds_cluster_database_name |
| 24 | + value = module.aurora.rds_cluster_database_name |
25 | 25 | } |
26 | 26 |
|
27 | | -output "this_rds_cluster_master_password" { |
| 27 | +output "rds_cluster_master_password" { |
28 | 28 | description = "The master password" |
29 | | - value = module.aurora.this_rds_cluster_master_password |
| 29 | + value = module.aurora.rds_cluster_master_password |
30 | 30 | sensitive = true |
31 | 31 | } |
32 | 32 |
|
33 | | -output "this_rds_cluster_port" { |
| 33 | +output "rds_cluster_port" { |
34 | 34 | description = "The port" |
35 | | - value = module.aurora.this_rds_cluster_port |
| 35 | + value = module.aurora.rds_cluster_port |
36 | 36 | } |
37 | 37 |
|
38 | | -output "this_rds_cluster_master_username" { |
| 38 | +output "rds_cluster_master_username" { |
39 | 39 | description = "The master username" |
40 | | - value = module.aurora.this_rds_cluster_master_username |
| 40 | + value = module.aurora.rds_cluster_master_username |
41 | 41 | sensitive = true |
42 | 42 | } |
43 | 43 |
|
44 | 44 | # aws_rds_cluster_instance |
45 | | -output "this_rds_cluster_instance_endpoints" { |
| 45 | +output "rds_cluster_instance_endpoints" { |
46 | 46 | description = "A list of all cluster instance endpoints" |
47 | | - value = module.aurora.this_rds_cluster_instance_endpoints |
| 47 | + value = module.aurora.rds_cluster_instance_endpoints |
48 | 48 | } |
49 | 49 |
|
50 | | -output "this_rds_cluster_instance_ids" { |
| 50 | +output "rds_cluster_instance_ids" { |
51 | 51 | description = "A list of all cluster instance ids" |
52 | | - value = module.aurora.this_rds_cluster_instance_ids |
| 52 | + value = module.aurora.rds_cluster_instance_ids |
53 | 53 | } |
54 | 54 |
|
55 | 55 | # aws_security_group |
56 | | -output "this_security_group_id" { |
| 56 | +output "security_group_id" { |
57 | 57 | description = "The security group ID of the cluster" |
58 | | - value = module.aurora.this_security_group_id |
| 58 | + value = module.aurora.security_group_id |
59 | 59 | } |
60 | 60 |
|
61 | 61 | # Enhanced monitoring role |
62 | | -output "this_enhanced_monitoring_iam_role_name" { |
| 62 | +output "enhanced_monitoring_iam_role_name" { |
63 | 63 | description = "The name of the enhanced monitoring role" |
64 | | - value = module.aurora.this_enhanced_monitoring_iam_role_name |
| 64 | + value = module.aurora.enhanced_monitoring_iam_role_name |
65 | 65 | } |
66 | 66 |
|
67 | | -output "this_enhanced_monitoring_iam_role_arn" { |
| 67 | +output "enhanced_monitoring_iam_role_arn" { |
68 | 68 | description = "The Amazon Resource Name (ARN) specifying the enhanced monitoring role" |
69 | | - value = module.aurora.this_enhanced_monitoring_iam_role_arn |
| 69 | + value = module.aurora.enhanced_monitoring_iam_role_arn |
70 | 70 | } |
71 | 71 |
|
72 | | -output "this_enhanced_monitoring_iam_role_unique_id" { |
| 72 | +output "enhanced_monitoring_iam_role_unique_id" { |
73 | 73 | description = "Stable and unique string identifying the enhanced monitoring role" |
74 | | - value = module.aurora.this_enhanced_monitoring_iam_role_unique_id |
| 74 | + value = module.aurora.enhanced_monitoring_iam_role_unique_id |
75 | 75 | } |
0 commit comments