Skip to content

Commit c170980

Browse files
committed
remove to references to the aws route53 module
Signed-off-by: Tariq Ibrahim <[email protected]>
1 parent 9bd4af9 commit c170980

File tree

94 files changed

+0
-56386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+0
-56386
lines changed

Diff for: go.mod

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ require (
99
github.com/aws/aws-sdk-go-v2 v1.32.7
1010
github.com/aws/aws-sdk-go-v2/config v1.28.5
1111
github.com/aws/aws-sdk-go-v2/service/ec2 v1.198.1
12-
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.2
1312
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.1
1413
github.com/mattn/go-isatty v0.0.20
1514
github.com/onsi/ginkgo/v2 v2.22.0

Diff for: go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 h1:iXtILhv
2020
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1/go.mod h1:9nu0fVANtYiAePIBh2/pFUSwtJ402hLnp854CNoDOeE=
2121
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7 h1:8eUsivBQzZHqe/3FE+cqwfH+0p5Jo8PFM/QYQSmeZ+M=
2222
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7/go.mod h1:kLPQvGUmxn/fqiCrDeohwG33bq2pQpGeY62yRO6Nrh0=
23-
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.2 h1:wmt05tPp/CaRZpPV5B4SaJ5TwkHKom07/BzHoLdkY1o=
24-
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.2/go.mod h1:d+K9HESMpGb1EU9/UmmpInbGIUcAkwmcY6ZO/A3zZsw=
2523
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.1 h1:cfVjoEwOMOJOI6VoRQua0nI0KjZV9EAnR8bKaMeSppE=
2624
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.1/go.mod h1:fGHwAnTdNrLKhgl+UEeq9uEL4n3Ng4MJucA+7Xi3sC4=
2725
github.com/aws/aws-sdk-go-v2/service/sso v1.24.6 h1:3zu537oLmsPfDMyjnUS2g+F2vITgy5pB74tHI+JBNoM=

Diff for: pkg/provider/aws/aws.go

-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import (
2828
"github.com/aws/aws-sdk-go-v2/config"
2929
"github.com/aws/aws-sdk-go-v2/service/ec2"
3030
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
31-
"github.com/aws/aws-sdk-go-v2/service/route53"
3231
"github.com/aws/aws-sdk-go/aws"
3332
)
3433

@@ -74,7 +73,6 @@ type AWS struct {
7473
type Provider struct {
7574
Tags []types.Tag
7675
ec2 *ec2.Client
77-
r53 *route53.Client
7876
cacheFile string
7977

8078
*v1alpha1.Environment
@@ -106,7 +104,6 @@ func New(log *logger.FunLogger, env v1alpha1.Environment, cacheFile string) (*Pr
106104
}
107105

108106
client := ec2.NewFromConfig(cfg)
109-
r53 := route53.NewFromConfig(cfg)
110107
p := &Provider{
111108
[]types.Tag{
112109
{Key: aws.String("Product"), Value: aws.String("Cloud Native")},
@@ -123,7 +120,6 @@ func New(log *logger.FunLogger, env v1alpha1.Environment, cacheFile string) (*Pr
123120
{Key: aws.String("GitHubRunAttempt"), Value: aws.String(gitHubRunAttempt)},
124121
},
125122
client,
126-
r53,
127123
cacheFile,
128124
&env,
129125
log,

0 commit comments

Comments
 (0)