-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
71 lines (62 loc) · 1.29 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
output "items" {
description = "All items from http response body."
value = local.items
}
output "ip_all_ranges" {
description = <<EOF
Full list of all ip addresses, this includes ipv4 and ipv6 addresses and both directions `ingress` and `egress`
```
ip_all_ranges = tolist([
"3.26.128.128/26",
"3.69.198.0/26",
"3.101.177.128/26",
"3.251.213.64/26",
"13.52.5.0/25",
"13.52.5.96/28",
...
"2401:1d80:3210:5::/64",
"2401:1d80:3214:3::/64",
"2401:1d80:3214:4::/64",
"2401:1d80:3214:5::/64",
"2401:1d80:3218::/64",
"2401:1d80:3218:2::/64",
"2401:1d80:3218:5::/64",
"2401:1d80:321c:3::/64",
"2401:1d80:321c:4::/64",
])
```
EOF
value = local.ip_all_ranges
}
output "ip4_ranges" {
description = <<EOF
```
ip4_ranges = tolist([
"3.69.198.0/26",
"18.184.99.128/25",
"18.184.99.224/28",
"185.166.140.0/22",
"185.166.143.0/24",
"185.166.143.240/28",
])
```
EOF
value = local.ip4_ranges
}
output "ip6_ranges" {
description = <<EOF
```
ip6_ranges = tolist([
"2401:1d80:3210:5::/64",
"2401:1d80:3214:3::/64",
"2401:1d80:3214:4::/64",
"2401:1d80:3214:5::/64",
"2401:1d80:3218::/64",
"2401:1d80:3218:2::/64",
"2401:1d80:3218:5::/64",
"2401:1d80:321c:3::/64",
"2401:1d80:321c:4::/64",
])
EOF
value = local.ip6_ranges
}