-
Notifications
You must be signed in to change notification settings - Fork 9
/
outputs.tf
41 lines (35 loc) · 852 Bytes
/
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
#
# Outputs for the Apache Spark terraform module.
#
# Copyright 2016-2022, Frederico Martins
# Author: Frederico Martins <https://github.com/fscm>
#
# SPDX-License-Identifier: MIT
#
# This program is free software. You can use it and/or modify it under the
# terms of the MIT License.
#
output "master_fqdn" {
sensitive = false
value = ["${aws_route53_record.private.*.fqdn}"]
}
output "master_hostname" {
sensitive = false
value = ["${aws_instance.master.*.private_dns}"]
}
output "master_id" {
sensitive = false
value = ["${aws_instance.master.*.id}"]
}
output "master_ip" {
sensitive = false
value = ["${aws_instance.master.*.private_ip}"]
}
output "security_group" {
sensitive = false
value = "${aws_security_group.spark.id}"
}
output "ssh_key" {
sensitive = false
value = "${var.keyname}"
}