forked from rebuy-de/aws-nuke
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into oreilly-main
Excluding docker_build job in release.yaml and ci.yaml
- Loading branch information
Showing
11 changed files
with
519 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes | ||
|
||
changelog: | ||
categories: | ||
- title: Notable changes | ||
labels: | ||
- '*' | ||
exclude: | ||
labels: | ||
- dependencies | ||
- title: Dependency updates | ||
labels: | ||
- dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package resources | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/aws/aws-sdk-go/aws/session" | ||
"github.com/aws/aws-sdk-go/service/cloudfront" | ||
"github.com/rebuy-de/aws-nuke/v2/pkg/types" | ||
) | ||
|
||
type CloudFrontResponseHeadersPolicy struct { | ||
svc *cloudfront.CloudFront | ||
ID *string | ||
name *string | ||
} | ||
|
||
func init() { | ||
register("CloudFrontResponseHeadersPolicy", ListCloudFrontResponseHeadersPolicies) | ||
} | ||
|
||
func ListCloudFrontResponseHeadersPolicies(sess *session.Session) ([]Resource, error) { | ||
svc := cloudfront.New(sess) | ||
resources := []Resource{} | ||
params := &cloudfront.ListResponseHeadersPoliciesInput{} | ||
|
||
for { | ||
resp, err := svc.ListResponseHeadersPolicies(params) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for _, item := range resp.ResponseHeadersPolicyList.Items { | ||
resources = append(resources, &CloudFrontResponseHeadersPolicy{ | ||
svc: svc, | ||
ID: item.ResponseHeadersPolicy.Id, | ||
name: item.ResponseHeadersPolicy.ResponseHeadersPolicyConfig.Name, | ||
}) | ||
} | ||
|
||
if resp.ResponseHeadersPolicyList.NextMarker == nil { | ||
break | ||
} | ||
|
||
params.Marker = resp.ResponseHeadersPolicyList.NextMarker | ||
} | ||
|
||
return resources, nil | ||
} | ||
|
||
func (f *CloudFrontResponseHeadersPolicy) Filter() error { | ||
if strings.HasPrefix(*f.name, "Managed-") { | ||
return fmt.Errorf("Cannot delete default CloudFront Response headers policy") | ||
} | ||
return nil | ||
} | ||
|
||
func (f *CloudFrontResponseHeadersPolicy) Remove() error { | ||
resp, err := f.svc.GetResponseHeadersPolicy(&cloudfront.GetResponseHeadersPolicyInput{ | ||
Id: f.ID, | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = f.svc.DeleteResponseHeadersPolicy(&cloudfront.DeleteResponseHeadersPolicyInput{ | ||
Id: f.ID, | ||
IfMatch: resp.ETag, | ||
}) | ||
|
||
return err | ||
} | ||
|
||
func (f *CloudFrontResponseHeadersPolicy) String() string { | ||
return *f.name | ||
} | ||
|
||
func (f *CloudFrontResponseHeadersPolicy) Properties() types.Properties { | ||
properties := types.NewProperties() | ||
properties.Set("ID", f.ID) | ||
properties.Set("Name", f.name) | ||
return properties | ||
} |
Oops, something went wrong.