-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AWS sts:AssumeRole stopped working with role/OrganizationAccountAccessRole in 1.30.x #16849
Comments
Workaround: use
|
FYI @rifelpet |
Any progress on this ? |
I don't have a sufficient AWS Organization setup to be able to reproduce this bug and given that the awsudo workaround is straight forward, I haven't made any progress. If anyone wants to contribute a fix to the AWS SDK code in this file, I'm happy to review it and test it against other ~/.aws/config setups. |
Hey @rifelpet, it seems like maybe it's the fact that we're trying to configure the region for STS purposes when we obtain it from IDMS, but that configuring STS causes issues for some configs. I've tested the following change locally and it seems to be working for me: jValdron@fed5ac3 If this makes sense, I'll open a PR for it. |
@jValdron yes feel free to open a PR for it |
/kind bug
1. What
kops
version are you running? The commandkops version
, will displaythis information.
Testing upgrade from
Client version: 1.29.2 (git-v1.29.2)
toClient version: 1.30.1 (git-v1.30.1)
2. What Kubernetes version are you running?
kubectl version
will print theversion if a cluster is running or provide the Kubernetes version specified as
a
kops
flag.v1.29.9
3. What cloud provider are you using?
AWS
4. What commands did you run? What is the simplest way to reproduce this issue?
kops_v1.30.1 update cluster
- no other changes to manifest or environment, only executing newer kops binary.5. What happened after the commands executed?
$ export AWS_PROFILE=company-name-dev3
$ kops_v1.30.1 update cluster
SDK 2024/09/20 14:31:06 DEBUG request failed with unretryable error https response error StatusCode: 403, RequestID: 623bd87e-11e1-4b06-9f16-10f60ba2f030, api error AccessDenied: User: arn:aws:sts::[redacted]006:assumed-role/OrganizationAccountAccessRole/aws-go-sdk-1726842666098977639 is not authorized to perform: sts:AssumeRole on resource: arn:aws:iam::[redacted]006:role/OrganizationAccountAccessRole Error: error determining default DNS zone: error querying zones: error listing hosted zones: operation error Route 53: ListHostedZones, get identity: get credentials: failed to refresh cached credentials, operation error STS: AssumeRole, https response error StatusCode: 403, RequestID: 623bd87e-11e1-4b06-9f16-10f60ba2f030, api error AccessDenied: User: arn:aws:sts::[redacted]006:assumed-role/OrganizationAccountAccessRole/aws-go-sdk-1726842666098977639 is not authorized to perform: sts:AssumeRole on resource: arn:aws:iam::[redacted]006:role/OrganizationAccountAccessRole
6. What did you expect to happen?
With kops-1.29.2 the output shows proposed changes that need to be applied with
--yes
AWS CLI is able to successfully get Route53 zones from the same shell:
7. Please provide your cluster manifest. Execute
kops get --name my.example.com -o yaml
to display your cluster manifest.You may want to remove your cluster name and other sensitive information.
8. Please run the commands with most verbose logging by adding the
-v 10
flag.Paste the logs into this report, or in a gist and provide the gist link here.
https://gist.github.com/vitaliyf/cfddd9ad771ee613ee850bb9e2d3fe14
9. Anything else do we need to know?
This cluster has been continuously upgraded one kops/kubernetes version at a time for at least a couple years, so it is pretty routine for us to test and execute such upgrades in-place.
I tried to look around and I suspect this is related to aws-sdk-go-v2 upgrade.
For example, they have this issue: aws/aws-sdk-go-v2#2686 - and coincidentally or not, that ticket is referenced by cert-manager/cert-manager#7236 where they are also dealing with "Missing Region" error just like #16645 from kops-1.30.0
The text was updated successfully, but these errors were encountered: