forked from oracle-quickstart/oci-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
52 lines (41 loc) · 1.11 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
output "chef_server_instance_id" {
description = "ocid of created chef server. "
value = [
"${module.chef_server.instance_id}",
]
}
output "chef_server_private_ip" {
description = "Private IPs of created instances. "
value = [
"${module.chef_server.private_ip}",
]
}
output "chef_server_fqdn" {
description = "chef server full qualify domain name "
value = "${module.chef_server.fqdn}"
}
output "chef_workstation_instance_id" {
description = "ocid of created chef server. "
value = [
"${module.chef_workstation.instance_id}",
]
}
output "chef_workstation_private_ip" {
description = "Private IPs of created instances. "
value = [
"${module.chef_workstation.private_ip}",
]
}
output "client_key" {
value = "${local_file.client_key.filename}"
}
output "validation_key" {
value = "${local_file.validation_key.filename}"
}
output "os_chef" {
value = {
bucket = "${oci_objectstorage_bucket.chef.name}"
validation_key = "${oci_objectstorage_object.chef_validation_key.object}"
client_key = "${oci_objectstorage_object.chef_client_key.object}"
}
}