com.pulumi.consul.inputs.ProviderAuthJwtArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consul Show documentation
Show all versions of consul Show documentation
A Pulumi package for creating and managing consul resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.consul.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ProviderAuthJwtArgs extends com.pulumi.resources.ResourceArgs {
public static final ProviderAuthJwtArgs Empty = new ProviderAuthJwtArgs();
/**
* The name of the auth method to use for login.
*
*/
@Import(name="authMethod", required=true)
private Output authMethod;
/**
* @return The name of the auth method to use for login.
*
*/
public Output authMethod() {
return this.authMethod;
}
/**
* The bearer token to present to the auth method during login for authentication purposes. For the Kubernetes auth method this is a [Service Account Token (JWT)](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#service-account-tokens).
*
*/
@Import(name="bearerToken")
private @Nullable Output bearerToken;
/**
* @return The bearer token to present to the auth method during login for authentication purposes. For the Kubernetes auth method this is a [Service Account Token (JWT)](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#service-account-tokens).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy