-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoutputs.tf
84 lines (67 loc) · 2.7 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
## outputs of rds_mysql_hive_metastore
output "rds_mysql_hive_metastore_db_instance_address" {
description = "The address of the RDS instance"
value = "${module.rds_mysql_hive_metastore.this_db_instance_address}"
}
output "rds_mysql_hive_metastore_db_instance_arn" {
description = "The ARN of the RDS instance"
value = "${module.rds_mysql_hive_metastore.this_db_instance_arn}"
}
output "rds_mysql_hive_metastore_db_instance_id" {
description = "The RDS instance ID"
value = "${module.rds_mysql_hive_metastore.this_db_instance_id}"
}
output "rds_mysql_hive_metastore_db_instance_resource_id" {
description = "The RDS Resource ID of this instance"
value = "${module.rds_mysql_hive_metastore.this_db_instance_resource_id}"
}
output "rds_mysql_hive_metastore_db_instance_status" {
description = "The RDS instance status"
value = "${module.rds_mysql_hive_metastore.this_db_instance_status}"
}
output "rds_mysql_hive_metastore_db_instance_name" {
description = "The database name"
value = "${module.rds_mysql_hive_metastore.this_db_instance_name}"
}
## outputs of s3_bucket_emr_cluster
output "s3_bucket_emr_cluster_id" {
description = "The name of the bucket."
value = "${module.s3_bucket_emr_cluster.this_s3_bucket_id}"
}
output "s3_bucket_emr_cluster_arn" {
description = "The ARN of the bucket. Will be of format arn:aws:s3:::bucketname."
value = "${module.s3_bucket_emr_cluster.this_s3_bucket_arn}"
}
output "s3_bucket_emr_cluster_domain_name" {
description = "The bucket domain name. Will be of format bucketname.s3.amazonaws.com."
value = "${module.s3_bucket_emr_cluster.this_s3_bucket_domain_name}"
}
output "s3_bucket_emr_cluster_region" {
description = "The AWS region this bucket resides in."
value = "${module.s3_bucket_emr_cluster.this_s3_bucket_region}"
}
output "s3_bucket_emr_cluster_tags" {
description = "List of tags"
value = "${module.s3_bucket_emr_cluster.this_s3_bucket_tags}"
}
## outputs of emr_cluster
output "emr_cluster_master_id" {
description = "Instance ID of master node"
value = "${module.emr_cluster.this_master_id}"
}
output "emr_cluster_master_private_ip" {
description = "Private IP of master node"
value = "${module.emr_cluster.this_master_private_ip}"
}
output "emr_cluster_master_public_dns" {
description = "Public DNS of master node"
value = "${module.emr_cluster.this_master_public_dns}"
}
output "emr_cluster_master_security_groups" {
description = "List of security groups"
value = "${module.emr_cluster.this_master_security_groups}"
}
output "emr_cluster_tags" {
description = "List of tags"
value = "${module.emr_cluster.this_aws_emr_cluster_tags}"
}