-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.tf
86 lines (70 loc) · 1.95 KB
/
output.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
85
86
# output for splunk module
output "splunk_instance_id" {
description = "Instance ID"
value = module.splunk.splunk_instance_id
}
output "splunk_instance_public_ip" {
description = "Public IP"
value = module.splunk.splunk_instance_public_ip
}
output "splunk_instance_private_ip" {
description = "Private IP"
value = module.splunk.splunk_instance_private_ip
}
output "splunk_sg" {
description = "The ID of the security group"
value = module.splunk.splunk_sg
}
output "splunk_vpc_arn" {
description = "The ARN of the VPC"
value = module.splunk.splunk_vpc_arn
}
output "splunk_vpc_id" {
description = "The ID of the VPC"
value = module.splunk.splunk_vpc_id
}
output "splunk_subnet_public" {
description = "The ID of the public subnet"
value = module.splunk.splunk_subnet_public
}
output "splunk_gw" {
description = "The ID of the IGW"
value = module.splunk.splunk_gw
}
output "splunk_route_table" {
description = "The ID of the routing table"
value = module.splunk.splunk_route_table
}
# output for ubuntu module
output "ubuntu_instance_id" {
description = "Instance ID"
value = module.ubuntu.ubuntu_instance_id
}
output "ubuntu_instance_private_ip" {
description = "Private IP"
value = module.ubuntu.ubuntu_instance_private_ip
}
output "lab_sg" {
description = "The ID of the security group"
value = module.ubuntu.lab_sg
}
output "lab_vpc_arn" {
description = "The ARN of the VPC"
value = module.ubuntu.lab_vpc_arn
}
output "lab_vpc_id" {
description = "The ID of the VPC"
value = module.ubuntu.lab_vpc_id
}
output "lab_subnet_public" {
description = "The ID of the public subnet"
value = module.ubuntu.lab_subnet_public
}
output "lab_gw" {
description = "The ID of the IGW"
value = module.ubuntu.lab_gw
}
output "lab_route_table" {
description = "The ID of the routing table"
value = module.ubuntu.lab_route_table
}