This repository was archived by the owner on Aug 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutputs.tf
51 lines (41 loc) · 1.46 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
# terraform-digitalocean-cjdns-node
# ============================================================================
# Copyright (c) 2018 Verb Networks Pty Ltd <contact [at] verbnetworks.com>
# - All rights reserved.
#
# Apache License v2.0
# - http://www.apache.org/licenses/LICENSE-2.0
# outputs
# ============================================================================
output "hostname" {
description = "the hostname given to this cjdns-node"
value = "${var.hostname}"
}
output "region" {
description = "the digitalocean region this cjdns-node is within"
value = "${var.region}"
}
output "user" {
description = "the user initial login user created with passwordless sudo access on this cjdns-node if set"
value = "${var.user}"
}
output "cjdroute_config" {
description = "the local cjdroute.conf file pused to this cjdns-node droplet"
value = "${var.cjdroute_config}"
}
output "cjdns_commit" {
description = "the cjdns git commit used to download, build and install on this cjdns-node"
value = "${var.cjdns_commit}"
}
output "ipfs_version" {
description = "the IPFS version used to download and install on this cjdns-node"
value = "${var.ipfs_version}"
}
output "ipv4_address" {
description = "the IPv4 address of this cjdns-node droplet"
value = "${digitalocean_droplet.droplet_node.ipv4_address}"
}
output "ipv6_address" {
description = "the IPv6 address of this cjdns-node droplet"
value = "${digitalocean_droplet.droplet_node.ipv6_address}"
}