Difference between revisions of "AWS"
From Wasya Wiki
(→Permissions) |
|||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
* [[ aws ecs ]] | * [[ aws ecs ]] | ||
* [[ aws rds ]] | * [[ aws rds ]] | ||
+ | * [[ aws vpc ]] | ||
+ | * [[ aws ec2 ]] | ||
− | + | = Install = | |
* 2023-12-19 | * 2023-12-19 | ||
* From: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html | * From: https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html | ||
Line 15: | Line 17: | ||
aws_access_key_id = <> | aws_access_key_id = <> | ||
aws_secret_access_key = <> | aws_secret_access_key = <> | ||
+ | </pre> | ||
+ | |||
+ | = Develop = | ||
+ | == ssh into container == | ||
+ | <pre> | ||
+ | aws ecs execute-command \ | ||
+ | --region us-east-2 \ | ||
+ | --cluster fragile-cluster \ | ||
+ | --task ae0ccaf26c1647d09ad5501b848b7cd3 \ | ||
+ | --container example1 \ | ||
+ | --command "/bin/bash" \ | ||
+ | --interactive \ | ||
+ | --profile ecs_driver_1 | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | == cloud ami images == | ||
+ | * https://cloud-images.ubuntu.com/locator/ | ||
+ | * https://public.ecr.aws/docker/library/httpd:2.4.57-bullseye | ||
+ | <pre> | ||
+ | |||
+ | ## ubuntu 22.04 us-east-1 | ||
+ | # ami-053053586808c3e70 | ||
+ | |||
+ | ## 22.04 us-east-2 amd64 | ||
+ | # ami-068cf3d51efeb20d6 | ||
+ | |||
+ | ## 22.04 us-east-2 amd64 | ||
+ | # ami-068cf3d51efeb20d6 | ||
+ | |||
</pre> | </pre> | ||
Line 32: | Line 64: | ||
</pre> | </pre> | ||
+ | === s3 === | ||
+ | <pre> | ||
+ | { | ||
+ | "Version": "2012-10-17", | ||
+ | "Statement": [ | ||
+ | { | ||
+ | "Sid": "Statement1", | ||
+ | "Effect": "Allow", | ||
+ | "Action": [ | ||
+ | "s3:PutObject", | ||
+ | "s3:GetObject", | ||
+ | "s3:GetObjectVersion", | ||
+ | "s3:GetObjectAcl", | ||
+ | "s3:PutObjectAcl" | ||
+ | ], | ||
+ | "Resource": [ | ||
+ | "arn:aws:s3:::ish-test-2024/*" | ||
+ | ] | ||
+ | }, | ||
+ | { | ||
+ | "Sid": "Statement2", | ||
+ | "Effect": "Allow", | ||
+ | "Action": [ | ||
+ | "s3:ListBucket" | ||
+ | ], | ||
+ | "Resource": [ | ||
+ | "arn:aws:s3:::ish-test-2024" | ||
+ | ] | ||
+ | } | ||
+ | ] | ||
+ | } | ||
+ | </pre> | ||
+ | |||
+ | = s3 = | ||
== duplicate a bucket == | == duplicate a bucket == | ||
aws s3 sync s3://<from> s3://<to> --profile <profile> | aws s3 sync s3://<from> s3://<to> --profile <profile> |
Latest revision as of 18:58, 6 November 2024
Contents
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
ssh into container
aws ecs execute-command \ --region us-east-2 \ --cluster fragile-cluster \ --task ae0ccaf26c1647d09ad5501b848b7cd3 \ --container example1 \ --command "/bin/bash" \ --interactive \ --profile ecs_driver_1
cloud ami images
- https://cloud-images.ubuntu.com/locator/
- https://public.ecr.aws/docker/library/httpd:2.4.57-bullseye
## ubuntu 22.04 us-east-1 # ami-053053586808c3e70 ## 22.04 us-east-2 amd64 # ami-068cf3d51efeb20d6 ## 22.04 us-east-2 amd64 # ami-068cf3d51efeb20d6
Permissions
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "ses:SendRawEmail", "Resource": "*" } ] }
s3
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:GetObjectVersion", "s3:GetObjectAcl", "s3:PutObjectAcl" ], "Resource": [ "arn:aws:s3:::ish-test-2024/*" ] }, { "Sid": "Statement2", "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::ish-test-2024" ] } ] }
s3
duplicate a bucket
aws s3 sync s3://<from> s3://<to> --profile <profile>