Aws: Difference between revisions
Jump to navigation
Jump to search
(→whoami) |
|||
Line 6: | Line 6: | ||
=whoami= | =whoami= | ||
aws sts get-caller-identity | aws sts get-caller-identity | ||
=which groups do I belong to= | |||
aws iam list-groups | |||
=list databases= | =list databases= | ||
aws rds describe-db-instances | aws rds describe-db-instances |
Revision as of 13:17, 4 January 2024
what does it mean
waf web application firewall
version
aws --version
whoami
aws sts get-caller-identity
which groups do I belong to
aws iam list-groups
list databases
aws rds describe-db-instances
List databases short version
aws rds describe-db-instances --region=eu-west-1 --query 'DBInstances[*].[DBInstanceArn,Engine,DBInstanceIdentifier]'
list events
aws rds describe-events aws rds describe-events --duration 10080 aws rds describe-events --duration 10080 --region=eu-west-1 --source-identifier admin-db-test-01 --source-type db-instance
list logfiles
aws rds describe-db-log-files --region=eu-west-1 --db-instance-identifier admin
view logfiles
aws rds download-db-log-file-portion --region=eu-west-1 --db-instance-identifier admin --log-file-name error/mysql-error-running.log.2022-05-05.14 --output text
List files in s3
aws s3 ls
Create bucket
aws --endpoint-url http://localhost:9000 s3 mb s3://minsio make_bucket: minsio
Push files to bucket.
aws --endpoint-url http://localhost:9000 s3 sync . s3://minsio