Difference between revisions of "AWS"
From Wasya Wiki
Line 17: | Line 17: | ||
</pre> | </pre> | ||
− | = Permissions = | + | = Develop = |
+ | == cloud ami images == | ||
+ | <pre> | ||
+ | |||
+ | ## | ||
+ | ## https://cloud-images.ubuntu.com/locator/ | ||
+ | ## | ||
+ | |||
+ | ## ubuntu 22.04 us-east-1 | ||
+ | # ami-053053586808c3e70 | ||
+ | |||
+ | ## 22.04 us-east-2 amd64 | ||
+ | # ami-068cf3d51efeb20d6 | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | == Permissions == | ||
<pre> | <pre> |
Revision as of 20:24, 29 March 2024
Install
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install
## ~/.aws/credentials [ish-ses] aws_access_key_id = <> aws_secret_access_key = <>
Develop
cloud ami images
## ## https://cloud-images.ubuntu.com/locator/ ## ## ubuntu 22.04 us-east-1 # ami-053053586808c3e70 ## 22.04 us-east-2 amd64 # ami-068cf3d51efeb20d6
Permissions
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "ses:SendRawEmail", "Resource": "*" } ] }
s3
duplicate a bucket
aws s3 sync s3://<from> s3://<to> --profile <profile>