-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc.go
117 lines (93 loc) · 2.81 KB
/
vpc.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package aws
import (
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/golang/glog"
"k8s.io/kops/pkg/resources"
"k8s.io/kops/upup/pkg/fi"
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
)
func DeleteVPC(cloud fi.Cloud, r *resources.Resource) error {
c := cloud.(awsup.AWSCloud)
id := r.ID
glog.V(2).Infof("Deleting EC2 VPC %q", id)
request := &ec2.DeleteVpcInput{
VpcId: &id,
}
_, err := c.EC2().DeleteVpc(request)
if err != nil {
if IsDependencyViolation(err) {
return err
}
return fmt.Errorf("error deleting VPC %q: %v", id, err)
}
return nil
}
func DumpVPC(op *resources.DumpOperation, r *resources.Resource) error {
data := make(map[string]interface{})
data["id"] = r.ID
data["type"] = ec2.ResourceTypeVpc
data["raw"] = r.Obj
op.Dump.Resources = append(op.Dump.Resources, data)
ec2VPC := r.Obj.(*ec2.Vpc)
vpc := &resources.VPC{
ID: aws.StringValue(ec2VPC.VpcId),
}
op.Dump.VPC = vpc
return nil
}
func DescribeVPCs(cloud fi.Cloud, clusterName string) (map[string]*ec2.Vpc, error) {
c := cloud.(awsup.AWSCloud)
vpcs := make(map[string]*ec2.Vpc)
glog.V(2).Info("Listing EC2 VPC")
for _, filters := range buildEC2FiltersForCluster(clusterName) {
request := &ec2.DescribeVpcsInput{
Filters: filters,
}
response, err := c.EC2().DescribeVpcs(request)
if err != nil {
return nil, fmt.Errorf("error listing VPCs: %v", err)
}
for _, vpc := range response.Vpcs {
vpcs[aws.StringValue(vpc.VpcId)] = vpc
}
}
return vpcs, nil
}
func ListVPCs(cloud fi.Cloud, clusterName string) ([]*resources.Resource, error) {
vpcs, err := DescribeVPCs(cloud, clusterName)
if err != nil {
return nil, err
}
var resourceTrackers []*resources.Resource
for _, v := range vpcs {
vpcID := aws.StringValue(v.VpcId)
resourceTracker := &resources.Resource{
Name: FindName(v.Tags),
ID: vpcID,
Type: ec2.ResourceTypeVpc,
Deleter: DeleteVPC,
Dumper: DumpVPC,
Obj: v,
Shared: !HasOwnedTag(ec2.ResourceTypeVpc+":"+vpcID, v.Tags, clusterName),
}
var blocks []string
blocks = append(blocks, "dhcp-options:"+aws.StringValue(v.DhcpOptionsId))
resourceTracker.Blocks = blocks
resourceTrackers = append(resourceTrackers, resourceTracker)
}
return resourceTrackers, nil
}