logo
pub struct WebIdentityProvider {
    pub web_identity_token: Variable<Secret, CredentialsError>,
    pub role_arn: Variable<String, CredentialsError>,
    pub role_session_name: Option<Variable<Option<String>, CredentialsError>>,
    pub duration_seconds: Option<i64>,
    pub policy: Option<String>,
    pub policy_arns: Option<Vec<PolicyDescriptorType>>,
}
Expand description

WebIdentityProvider using OpenID Connect bearer token to retrieve AWS IAM credentials.

See https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html for more details.

Fields

web_identity_token: Variable<Secret, CredentialsError>

The OAuth 2.0 access token or OpenID Connect ID token that is provided by the identity provider. Your application must get this token by authenticating the user who is using your application with a web identity provider before the application makes an AssumeRoleWithWebIdentity call.

role_arn: Variable<String, CredentialsError>

The Amazon Resource Name (ARN) of the role that the caller is assuming.

role_session_name: Option<Variable<Option<String>, CredentialsError>>

An identifier for the assumed role session. Typically, you pass the name or identifier that is associated with the user who is using your application. That way, the temporary security credentials that your application will use are associated with that user. This session name is included as part of the ARN and assumed role ID in the AssumedRoleUser response element.

duration_seconds: Option<i64>

The duration, in seconds, of the role session. The value can range from 900 seconds (15 minutes) up to the maximum session duration setting for the role.

policy: Option<String>

An IAM policy in JSON format that you want to use as an inline session policy.

policy_arns: Option<Vec<PolicyDescriptorType>>

The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as managed session policies.

Implementations

Create new WebIdentityProvider by explicitly passing its configuration.

Creat a WebIdentityProvider from the following environment variables:

  • AWS_WEB_IDENTITY_TOKEN_FILE path to the web identity token file.
  • AWS_ROLE_ARN ARN of the role to assume.
  • AWS_ROLE_SESSION_NAME (optional) name applied to the assume-role session.

See https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-technical-overview.html for more information about how IAM Roles for Kubernetes Service Accounts works.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Produce a new AwsCredentials future.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more