mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-21 12:31:24 +02:00
It generates JSON file in the end with the upload results: ``` {"aws":{"regions":{"eu-central-1":{"arch":{"amd64":{"ami_id":"ami-0f559e06baf488ee1"},"arm64":{"ami_id":"ami-01edd1830a3c5d95c"}}},"eu-west-3":{"arch":{"amd64":{"ami_id":"ami-020f95a280c4c1c55"},"arm64":{"ami_id":"ami-0edcc7d694931a52c"}}}}}} ``` Regions, architectures can be modified as well. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
14 lines
382 B
Modula-2
14 lines
382 B
Modula-2
module github.com/talos-systems/cloud-image-uploader
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/aws/aws-sdk-go v1.15.78
|
|
github.com/google/uuid v1.1.2
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.6.1 // indirect
|
|
github.com/talos-systems/go-retry v0.1.0
|
|
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b // indirect
|
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
|
|
)
|