forked from AndreZiviani/ec2-price-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
101 additions
and
34 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
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 |
---|---|---|
@@ -1,36 +1,36 @@ | ||
module github.com/AndreZiviani/ec2-price-exporter | ||
module github.com/pixelfederation/ec2-price-exporter | ||
|
||
go 1.19 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.17.3 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.7 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.77.0 | ||
github.com/aws/aws-sdk-go-v2/service/pricing v1.17.5 | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/aws/aws-sdk-go-v2 v1.18.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.22 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.95.0 | ||
github.com/aws/aws-sdk-go-v2/service/pricing v1.19.5 | ||
github.com/prometheus/client_golang v1.15.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.11.28 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.17.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.12.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.18.10 // indirect | ||
github.com/aws/smithy-go v1.13.5 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.39.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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