AWS CLI: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
aws route53 list-hosted-zones --output json | aws route53 list-hosted-zones --output json | ||
aws route53 list-resource-record-sets --hosted-zone-id=Z2U6EL1ZO4QJ1T --output=json | aws route53 list-resource-record-sets --hosted-zone-id=Z2U6EL1ZO4QJ1T --output=json | ||
</syntaxhighlight> | |||
---- | |||
<syntaxhighlight lang="bash"> | |||
ZONE_NAME=chorke.org | |||
HOSTED_ZONE_ID=$(aws route53 list-hosted-zones --output json | jq -r ".HostedZones[] | select(.Name == \"${ZONE_NAME}.\") | .Id" | cut -d'/' -f3) | |||
aws route53 list-resource-record-sets --hosted-zone-id=${HOSTED_ZONE_ID} --output=json | jq -jr '.ResourceRecordSets[] | "\(.Name) \t\(.TTL) \t\(.Type) \t\(.AliasTarget?.DNSName)\n"' | |||
aws route53 list-resource-record-sets --hosted-zone-id=${HOSTED_ZONE_ID} --output=json | jq -jr '.ResourceRecordSets[] | "\(.Name) \t\(.TTL) \t\(.Type) \t\(.ResourceRecords[]?.Value)\n"' | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 00:49, 22 November 2024
wget -cq https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -P ${HOME}/Downloads
unzip -q ${HOME}/Downloads/awscli-exe-linux-x86_64.zip -d ${HOME}/Downloads/
rm -rf ${HOME}/Downloads/awscli-exe-linux-x86_64.zip
sudo ${HOME}/Downloads/aws/install
rm -rf ${HOME}/Downloads/aws
AWS » Profile
export AWS_PROFILE=chorke.academia
export AWS_PROFILE=chorke
aws ec2 describe-availability-zones
aws sts get-caller-identity
aws configure list
aws s3 ls
AWS » Route 53
aws route53 list-hosted-zones --output json
aws route53 list-resource-record-sets --hosted-zone-id=Z2U6EL1ZO4QJ1T --output=json
ZONE_NAME=chorke.org
HOSTED_ZONE_ID=$(aws route53 list-hosted-zones --output json | jq -r ".HostedZones[] | select(.Name == \"${ZONE_NAME}.\") | .Id" | cut -d'/' -f3)
aws route53 list-resource-record-sets --hosted-zone-id=${HOSTED_ZONE_ID} --output=json | jq -jr '.ResourceRecordSets[] | "\(.Name) \t\(.TTL) \t\(.Type) \t\(.AliasTarget?.DNSName)\n"'
aws route53 list-resource-record-sets --hosted-zone-id=${HOSTED_ZONE_ID} --output=json | jq -jr '.ResourceRecordSets[] | "\(.Name) \t\(.TTL) \t\(.Type) \t\(.ResourceRecords[]?.Value)\n"'
Playground
cat << INI | tee -a ${HOME}/.aws/config >/dev/null
[default]
region = ap-southeast-1
output = table
INI
|
cat << INI | tee -a ${HOME}/.aws/credentials >/dev/null
[academia]
aws_access_key_id = AKIBVWTF7RISAULV8Q6Q
aws_secret_access_key = w2JVkDIE9zRTIP/S4m7Mm4cWKlFEYlzg1iGzfCnj
INI
|
cat << INI | tee -a ${HOME}/.aws/config >/dev/null
[profile academia]
region = ap-southeast-1
output = json
INI
|
| ||
export AWS_DEFAULT_PROFILE=academia
export AWS_PROFILE=academia
aws ec2 describe-vpcs
aws s3 ls
|
aws kms delete-alias --alias-name \ arn:aws:kms:ap-southeast-1:235216370500:alias/eks/sdlc_cluster cat ~/.aws/credentials cat ~/.aws/config |
aws configure --profile academia aws sts get-caller-identity aws configure list aws configure |
| ||
kubectl config set-context minikube --cluster=minikue
kubectl config set-context minikube
kubectl config get-contexts
kubectl config get-clusters
kubectl config view
|
References
| ||
| ||