-
Notifications
You must be signed in to change notification settings - Fork 10
/
vpcs.go
73 lines (63 loc) · 1.68 KB
/
vpcs.go
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
package main
import (
"encoding/json"
"log"
"github.com/aws/aws-sdk-go/service/ec2"
)
type vpcList struct {
*ec2.DescribeVpcsOutput
}
type vpcNodes []vpcNode
type vpcNode struct {
UID string `json:"uid,omitempty"`
Type []string `json:"dgraph.type,omitempty"`
Name string `json:"name,omitempty"` // This field is only for Ratel Viz
OwnerID string `json:"OwnerId,omitempty"`
OwnerName string `json:"OwnerName,omitempty"`
Region string `json:"Region,omitempty"`
Service string `json:"Service,omitempty"`
VpcID string `json:"VpcId,omitempty"`
CidrBlock string `json:"CidrBlock,omitempty"`
}
func (c *connector) listVpcs() vpcList {
defer c.waitGroup.Done()
log.Println("List VPCs")
response, err := ec2.New(c.awsSession).DescribeVpcs(&ec2.DescribeVpcsInput{})
if err != nil {
log.Fatal(err)
}
return vpcList{response}
}
func (list vpcList) addNodes(c *connector) {
defer c.waitGroup.Done()
if len(list.Vpcs) == 0 {
return
}
log.Println("Add VPC Nodes")
a := make(vpcNodes, 0, len(list.Vpcs))
for _, i := range list.Vpcs {
var b vpcNode
b.Service = "ec2"
b.Region = c.awsRegion
b.OwnerID = c.awsAccountID
b.OwnerName = c.awsAccountName
b.Type = []string{"Vpc"}
b.Name = *i.VpcId
for _, tag := range i.Tags {
if *tag.Key == "Name" {
b.Name = *tag.Value
}
}
b.VpcID = *i.VpcId
a = append(a, b)
}
c.dgraphAddNodes(a)
c.stats.NumberOfNodes += len(a)
m := make(map[string]vpcNodes)
n := make(map[string]string)
json.Unmarshal(c.dgraphQuery("Vpc"), &m)
for _, i := range m["list"] {
n[i.VpcID] = i.UID
}
c.ressources["Vpcs"] = n
}