Forrest logo
back to context overview

aws

List of commands for aws:

  • aws:ai:e32c3 How to setup an aws instance
    $ aws ec2 run-instances --image-id ${image-id} --count ${instance-count} --instance-type ${instance-type} --key-name ${key-pair-name}
    try on your machine
    explain this command
  • aws:tldr:1c8fa aws: Configure the AWS Command-line using SSO.
    $ aws configure sso
    try on your machine
    explain this command
  • aws:tldr:31c59 aws: Generate a JSON CLI Skeleton (useful for infrastructure as code).
    $ aws dynamodb update-table --generate-cli-skeleton
    try on your machine
    explain this command
  • aws:tldr:373e8 aws: List AWS resources in a region and output in YAML.
    $ aws dynamodb list-tables --region ${us-east-1} --output yaml
    try on your machine
    explain this command
  • aws:tldr:fb477 aws: Configure the AWS Command-line.
    $ aws configure wizard
    try on your machine
    explain this command
  • aws:tldr:fe0b2 aws: Get an interactive wizard for an AWS resource.
    $ aws dynamodb wizard ${new_table}
    try on your machine
    explain this command
  • aws:tldr:ff2bb aws: Use auto prompt to help with a command.
    $ aws iam create-user --cli-auto-prompt
    try on your machine
    explain this command
  • aws:warp:cdbf74cf39e9d2fa44bfa6bb3c678d0b Set AWS EKS kubeconfig
    $ aws eks update-kubeconfig --region ${region} --name ${cluster} --alias ${alias}
    try on your machine
    explain this command
back to context overview