driftctl/pkg/middlewares/aws_default_igw_route.go

73 lines
2.5 KiB
Go

package middlewares
import (
"github.com/cloudskiff/driftctl/pkg/resource"
"github.com/cloudskiff/driftctl/pkg/resource/aws"
"github.com/sirupsen/logrus"
)
// Each region has a default vpc which has an internet gateway attached and thus the route table of this
// same vpc has a specific default route that should not be seen as unmanaged if not managed by IaC
// This middleware ignores the above route from unmanaged resources if not managed by IaC
type AwsDefaultInternetGatewayRoute struct{}
func NewAwsDefaultInternetGatewayRoute() AwsDefaultInternetGatewayRoute {
return AwsDefaultInternetGatewayRoute{}
}
func (m AwsDefaultInternetGatewayRoute) Execute(remoteResources, resourcesFromState *[]resource.Resource) error {
newRemoteResources := make([]resource.Resource, 0)
for _, remoteResource := range *remoteResources {
// Ignore all resources other than routes
if remoteResource.TerraformType() != aws.AwsRouteResourceType {
newRemoteResources = append(newRemoteResources, remoteResource)
continue
}
route, _ := remoteResource.(*aws.AwsRoute)
// Ignore all routes except the one that came from the default internet gateway
if !isDefaultInternetGatewayRoute(route, remoteResources) {
newRemoteResources = append(newRemoteResources, remoteResource)
continue
}
// Check if route is managed by IaC
existInState := false
for _, stateResource := range *resourcesFromState {
if resource.IsSameResource(remoteResource, stateResource) {
existInState = true
break
}
}
// Include resource if it's managed in IaC
if existInState {
newRemoteResources = append(newRemoteResources, remoteResource)
continue
}
// Else, resource is not added to newRemoteResources slice so it will be ignored
logrus.WithFields(logrus.Fields{
"route": route.String(),
"id": route.TerraformId(),
"type": route.TerraformType(),
}).Debug("Ignoring default internet gateway route as it is not managed by IaC")
}
*remoteResources = newRemoteResources
return nil
}
// Return true if the route's target is the default internet gateway (e.g. attached to the default vpc)
func isDefaultInternetGatewayRoute(route *aws.AwsRoute, remoteResources *[]resource.Resource) bool {
for _, remoteResource := range *remoteResources {
if remoteResource.TerraformType() == aws.AwsInternetGatewayResourceType &&
isDefaultInternetGateway(remoteResource.(*aws.AwsInternetGateway), remoteResources) {
return route.GatewayId != nil && *route.GatewayId == remoteResource.TerraformId()
}
}
return false
}