Skip to content

Commit

Permalink
Merge pull request #250 from NVIDIA/no-r53
Browse files Browse the repository at this point in the history
remove to references to the aws route53 module
  • Loading branch information
ArangoGutierrez authored Jan 7, 2025
2 parents 7722ff4 + d85b673 commit 7b3589a
Show file tree
Hide file tree
Showing 94 changed files with 0 additions and 56,394 deletions.
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ require (
github.com/aws/aws-sdk-go-v2 v1.32.7
github.com/aws/aws-sdk-go-v2/config v1.28.7
github.com/aws/aws-sdk-go-v2/service/ec2 v1.198.1
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.4
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.2
github.com/mattn/go-isatty v0.0.20
github.com/onsi/ginkgo/v2 v2.22.1
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 h1:iXtILhv
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1/go.mod h1:9nu0fVANtYiAePIBh2/pFUSwtJ402hLnp854CNoDOeE=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7 h1:8eUsivBQzZHqe/3FE+cqwfH+0p5Jo8PFM/QYQSmeZ+M=
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7/go.mod h1:kLPQvGUmxn/fqiCrDeohwG33bq2pQpGeY62yRO6Nrh0=
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.4 h1:0jMtawybbfpFEIMy4wvfyW2Z4YLr7mnuzT0fhR67Nrc=
github.com/aws/aws-sdk-go-v2/service/route53 v1.46.4/go.mod h1:xlMODgumb0Pp8bzfpojqelDrf8SL9rb5ovwmwKJl+oU=
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.2 h1:MOxvXH2kRP5exvqJxAZ0/H9Ar51VmADJh95SgZE8u60=
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.2/go.mod h1:RKWoqC9FlgMCkrfVOtgfqfwdaUIaq8H93UAt4xNaR0A=
github.com/aws/aws-sdk-go-v2/service/sso v1.24.8 h1:CvuUmnXI7ebaUAhbJcDy9YQx8wHR69eZ9I7q5hszt/g=
Expand Down
4 changes: 0 additions & 4 deletions pkg/provider/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import (
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/ec2"
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
"github.com/aws/aws-sdk-go-v2/service/route53"
"github.com/aws/aws-sdk-go/aws"
)

Expand Down Expand Up @@ -74,7 +73,6 @@ type AWS struct {
type Provider struct {
Tags []types.Tag
ec2 *ec2.Client
r53 *route53.Client
cacheFile string

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

client := ec2.NewFromConfig(cfg)
r53 := route53.NewFromConfig(cfg)
p := &Provider{
[]types.Tag{
{Key: aws.String("Product"), Value: aws.String("Cloud Native")},
Expand All @@ -123,7 +120,6 @@ func New(log *logger.FunLogger, env v1alpha1.Environment, cacheFile string) (*Pr
{Key: aws.String("GitHubRunAttempt"), Value: aws.String(gitHubRunAttempt)},
},
client,
r53,
cacheFile,
&env,
log,
Expand Down
Loading

0 comments on commit 7b3589a

Please sign in to comment.