You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use an external-id to assume through our auth account into other accounts. This value is, and should be treated as, a secret. Currently in the ProviderConfig you can only hard code a value into the resource, which is a problem when they're in gitops.
What could help solve your problem?
Change structure from
spec:
assumeRoleChain:
- externalID: <string>
to
spec:
assumeRoleChain:
- externalID:
secretRef: # Either this
name: <string>
namespace: <string>
key: <string>
value: <string> # or this
The text was updated successfully, but these errors were encountered:
What problem are you facing?
We use an external-id to assume through our auth account into other accounts. This value is, and should be treated as, a secret. Currently in the
ProviderConfig
you can only hard code a value into the resource, which is a problem when they're in gitops.What could help solve your problem?
Change structure from
to
The text was updated successfully, but these errors were encountered: