About 1,320,000 results
Open links in new tab
  1. SSL CERTIFICATE_VERIFY_FAILED in aws cli - Stack Overflow

    Oct 5, 2015 · 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 …

  2. java - User: arn:aws:sts:: {account_id}:assumed-role/* is not ...

    Jan 11, 2022 · I am creating two resources AWS Lambda function and Role using cloudformation template. I am using role arn as Environment variable. Later using it in code for S3 connection. …

  3. Why is sts:AssumeRole in the Trust Policy and not the Permissions ...

    May 14, 2020 · A role’s trust policy describes who or which service is allowed to assume that role. A role is being assumed by calling sts:AssumeRole. The reason why the action is explicitly …

  4. The security token included in the request is expired

    Feb 29, 2016 · unset AWS_SESSION_TOKEN AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY Now you will have only one set of access keys i.e in …

  5. How enable access to AWS STS AssumeRole - Stack Overflow

    Dec 27, 2016 · Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  6. Not authorized to perform: sts:TagSession on resource:

    Nov 8, 2021 · For anyone using aws-cdk, you can include sts:TagSession in the trust relationship as follows: new iam.Role(this, id, { assumedBy: new iam.ArnPrincipal(arn).withSessionTags() }).

  7. yaml - Error: checking AWS STS access - Stack Overflow

    Mar 8, 2022 · Error: checking AWS STS access – cannot get role ARN for current session: MissingEndpoint: 'Endpoint' configuration is required for this service How can I resolve this? …

  8. i am not able to get session token in aws cli - Stack Overflow

    Sep 19, 2024 · Check the AWS credentials that you are using when running aws sts get-session-token. They'll be in your environment variables or the default config/credentials files. Run aws …

  9. How can I resolve the error "The security token included in the …

    Jan 4, 2016 · The MFA that I used to authenticate myself to the AWS console (web) in my AWS account was interfering when using the aws configure command with the new iam user …

  10. AWS sts assume role in one command - Stack Overflow

    Aug 4, 2020 · aws sts assume-role --role-arn "arn-of-the-role" --role-session-name "arbitrary-session-name" > credentials.json Obviously this is just an approach, particularly helping in …