JwtArgs

data class JwtArgs(val audiences: Output<List<String>>? = null, val issuer: Output<String>? = null, val jwksPublicKeys: Output<String>? = null, val jwtHeaders: Output<List<JwtHeaderArgs>>? = null, val jwtParams: Output<List<String>>? = null) : ConvertibleToJava<JwtArgs>

Deprecated JWT configuration for origin authentication. JWT configuration for origin authentication.

Constructors

Link copied to clipboard
fun JwtArgs(audiences: Output<List<String>>? = null, issuer: Output<String>? = null, jwksPublicKeys: Output<String>? = null, jwtHeaders: Output<List<JwtHeaderArgs>>? = null, jwtParams: Output<List<String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): JwtArgs

Properties

Link copied to clipboard
val audiences: Output<List<String>>? = null

A JWT containing any of these audiences will be accepted. The service name will be accepted if audiences is empty. Examples: bookstore_android.apps.googleusercontent.com, bookstore_web.apps.googleusercontent.com

Link copied to clipboard
val issuer: Output<String>? = null

Identifies the issuer that issued the JWT, which is usually a URL or an email address. Examples: https://securetoken.google.com, 1234567-compute@developer.gserviceaccount.com

Link copied to clipboard
val jwksPublicKeys: Output<String>? = null

The provider's public key set to validate the signature of the JWT.

Link copied to clipboard
val jwtHeaders: Output<List<JwtHeaderArgs>>? = null

jwt_headers and jwt_params define where to extract the JWT from an HTTP request. If no explicit location is specified, the following default locations are tried in order: 1. The Authorization header using the Bearer schema. See here . Example: Authorization: Bearer . 2. access_token query parameter. See this Multiple JWTs can be verified for a request. Each JWT has to be extracted from the locations its issuer specified or from the default locations. This field is set if JWT is sent in a request header. This field specifies the header name. For example, if header=x-goog-iap-jwt-assertion, the header format will be x-goog-iap-jwt-assertion: .

Link copied to clipboard
val jwtParams: Output<List<String>>? = null

This field is set if JWT is sent in a query parameter. This field specifies the query parameter name. For example, if jwt_params0 is jwt_token, the JWT format in the query parameter is /path?jwt_token=.