aws-cli Questions
5
Solved
I have this command:
aws ec2 describe-regions --output=json
the output looks like:
{
"Regions": [
{
"Endpoint": "ec2.eu-north-1.amazonaws.com",
"RegionName": "eu-north-1"
},
{
"Endpoin...
Dupuis asked 7/5, 2019 at 1:46
1
So when I trigger a codepipeline using the below command:
aws codepipeline start-pipeline-execution --name MyFirstPipeline
I only get an asynchronous response
{
"pipelineExecutionId": &...
Screens asked 29/4, 2021 at 19:10
5
Solved
hi I am unable to run this command aws sts get-caller-identity.
when I do sudo nano ~/.aws/credentials I can only locate this
[default]
aws_access_key_id = my_id
aws_secret_access_key = my_secret_i...
Mentholated asked 8/12, 2021 at 14:18
5
I am using aws cli to create and delete DNS record in Route 53. I am not sure about the payload or the command that has to be used. As per this link, I created this payload, but it's not working. T...
Augmenter asked 4/6, 2020 at 10:33
7
Solved
I am learning the AWS CLI (v2) and have installed it on Ubuntu 18.04. I am running zsh with oh-my-zsh installed. I am trying to get aws command output to be reported back to the terminal as a...
13
Solved
I was able to pull and/or push updated from my AWS CodeCommit repository until I reinstalled aws-cli.
I tried all the suggested solutions I could find but nothing seems to work.
I am working on Ubu...
Espousal asked 13/5, 2022 at 16:2
15
Solved
I am retrieving secrets I have stored in AWS secrets manager with the AWS cli like this:
aws secretsmanager get-secret-value --secret-id secrets
Which returns
arn:aws:secretsmanager<ID>:s...
Irenairene asked 18/6, 2018 at 14:18
5
Solved
Am trying to use AWS-CLI to retrieve aws elasticbeanstalk details, but am getting the following error.
Error message:
C:\abdul>aws elasticbeanstalk describe-environments --environment-name mye...
Regality asked 27/3, 2020 at 6:22
4
Solved
I'm trying to use AWS CLI to access CodeCommit. And it's sort of working. I am able to use the aws command in the Windows command prompt. However, when I try to access it using the Git Bash shell, ...
Sergu asked 26/10, 2018 at 20:5
5
I am deploying a AWS Lambda layer using aws cli:
aws lambda publish-layer-version --layer-name my_layer --zip-file fileb://my_layer.zip
I delete it using
VERSION=$(aws lambda list-layer-versio...
Gladisgladney asked 24/3, 2020 at 3:56
8
I'm trying to grab logs from Cloudwatch with this CLI usage:
cat cli-get-log-events.json
{
"logGroupName": "/aws/lambda/my-group",
"logStreamName": "2019/03/30/[$LATEST]dec1626296d84819be42f2e...
Ret asked 30/3, 2019 at 22:33
29
I installed AWS CLI on the Windows server 2007 32bit.
aws --version
aws-cli/1.8.8 Python/2.7.9 Windows/2008Server
I configure aws cli using keys
Once I run below command to test AWS S3, I get ...
Bacchic asked 5/10, 2015 at 10:11
25
I am facing an error while deploying deployment in CircleCI. Please find the configuration file below.
When running the kubectl CLI, we got an error between kubectl and the EKS tool of the aws-cli....
Scotism asked 5/5, 2022 at 10:56
4
Solved
I'm trying to paginate over EC2 Reserved Instance offerings, but can't seem to paginate via the CLI (see below).
% aws ec2 describe-reserved-instances-offerings --max-results 20
{
"NextToken": "...
Thoroughwort asked 9/8, 2016 at 14:46
4
We have the AWS Console federated to our Shibboleth IdP (SAML).
Does AWS CLIv2 support using federated account to CLI access via SSO? If so -- where can I find the 'SSO start URL' listed in link b...
Daysidayspring asked 6/1, 2020 at 6:23
7
Solved
I have a lambda function which was working fine but I wanted to import a package so I created a directory with index.js and installed my npm package.
Then created a zip of this folder and uploade...
Backpedal asked 13/3, 2020 at 6:40
13
First, I installed AWS-CLI and I already used "AWS configure" to set up my secret key and I also used "Docker login" command to log in and I got success and when I typed Get-ECRLoginCommand. It wor...
Paulo asked 23/3, 2020 at 3:46
2
Looking at the man page for list-secrets, there is no special options to show deleted or not. It does not list deleted secrets. However, the output definition includes a "DeletedDate" tim...
Emmer asked 27/11, 2020 at 13:31
29
I am trying to run CDK commands to check the diff of my local and remote stack.
I am using the following command.
cdk diff --profile saml
I am getting the following error message
Unable to re...
Pharisee asked 20/11, 2019 at 21:17
10
I have been trying to run an external-dns pod using the guide provided by k8s-sig group. I have followed every step of the guide, and getting the below error.
time="2021-02-27T13:27:20Z" ...
Fate asked 28/2, 2021 at 4:19
5
Solved
I am trying to create an AWS Lambda function using the command
aws lambda create-function \
--function-name foo\
--runtime nodejs\
--role lambda_basic_execution \
--handler asdf --zip-file "fi...
Haematoblast asked 18/12, 2015 at 19:41
7
Solved
All of my aws-cli commands returned
Unknown output type: [None]
I checked my configuration
$ aws configure
appeared normal but i was unable to edit my 'Default output format'
I ran my a...
Crossing asked 7/2, 2018 at 1:23
4
Solved
With aws cli I can successfully create parameter in AWS Paramater Store and retrieve it using get-parameters.
Example:
anarinsky:~> aws ssm put-parameter --name /IAD/ERP/Oracle/addUsers --valu...
Endocrinotherapy asked 18/10, 2017 at 13:57
37
I created a new Access Key and configured that in the AWS CLI with aws configure. It created the .ini file in ~/.aws/config. When I run aws s3 ls it gives:
A client error (InvalidAccessKeyId) oc...
Item asked 20/8, 2016 at 7:5
7
Solved
I need to install redis in amazon cloud. I need it as a part of my npm module kue (deployment). Can anyone link me step by step tutorial or explain how to do it, considering the fact that I'm not g...
Adaptation asked 29/12, 2014 at 13:48
1 Next >
© 2022 - 2024 — McMap. All rights reserved.