3

With the AWS CLI you can assume a role using the --profile parameter:

aws --profile <profile_name> <service> <command>

e.g.:

aws --profile admin s3 ls s3://mybucket/

That profile can be an AWS role that os to be assumed. My problem with that is that the session of the role is only valid for one hour by default. Is there a way of explicitly setting the session duration without using the sts service directly?

Hugo G
  • 153
  • 4

2 Answers2

1

You can set a maximum duration of up to 12 hours in the IAM Role config:

enter image description here

Hope that helps.

MLu
  • 1,011
  • 5
  • 7
0

Along with changing the MaxSessionDuration(as mentioned in the above answer) of the IAM role ,also try adding/changing "duration_seconds" parameter value in the credentials file of the configured profile.

Kunal
  • 11
  • 1