|
|
|
|
|
by carusooneliner
2975 days ago
|
|
When I'm trying out a new AWS service I start using it through the web console. Once I gain some familiarity with the service and settle into a pattern of manual operations, I translate the manual operations into CLI commands. The most commonly run CLI commands I throw into a shell script. For instance, I started using AWS Lambda by manually uploading the lambda code .zip file through the web console. Later on I wrote a shell script that invokes an AWS CLI command to do the same. TIP: when using AWS CLI, set the parameter '--output json' to get pretty, readable output. It's much better than the default output text format. |
|