Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion nixos/maintainers/scripts/ec2/create-amis.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -27,24 +27,30 @@ var ${bucket:=nixos-amis}
var ${service_role_name:=vmimport} var ${service_role_name:=vmimport}


# Output of the command: # Output of the command:
# > aws ec2 describe-regions --all-regions --query "Regions[].{Name:RegionName}" --output text | sort # $ nix-shell -I nixpkgs=. -p awscli --run 'aws ec2 describe-regions --region us-east-1 --all-regions --query "Regions[].{Name:RegionName}" --output text | sort | sed -e s/^/\ \ /'
Comment thread
roberth marked this conversation as resolved.
var ${regions:= var ${regions:=
af-south-1 af-south-1
ap-east-1 ap-east-1
ap-northeast-1 ap-northeast-1
ap-northeast-2 ap-northeast-2
ap-northeast-3 ap-northeast-3
ap-south-1 ap-south-1
ap-south-2
ap-southeast-1 ap-southeast-1
ap-southeast-2 ap-southeast-2
ap-southeast-3 ap-southeast-3
ap-southeast-4
ca-central-1 ca-central-1
eu-central-1 eu-central-1
eu-central-2
eu-north-1 eu-north-1
eu-south-1 eu-south-1
eu-south-2
eu-west-1 eu-west-1
eu-west-2 eu-west-2
eu-west-3 eu-west-3
il-central-1
me-central-1
me-south-1 me-south-1
sa-east-1 sa-east-1
us-east-1 us-east-1
Expand Down