1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayPluginOauth2Introspection
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayPluginOauth2Introspection

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    GatewayPluginOauth2Introspection Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayPluginOauth2Introspection;
    import com.pulumi.konnect.GatewayPluginOauth2IntrospectionArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionConfigArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionOrderingArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionOrderingAfterArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionOrderingBeforeArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionRouteArgs;
    import com.pulumi.konnect.inputs.GatewayPluginOauth2IntrospectionServiceArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myGatewaypluginoauth2introspection = new GatewayPluginOauth2Introspection("myGatewaypluginoauth2introspection", GatewayPluginOauth2IntrospectionArgs.builder()
                .config(GatewayPluginOauth2IntrospectionConfigArgs.builder()
                    .anonymous("...my_anonymous...")
                    .authorization_value("...my_authorization_value...")
                    .consumer_by("username")
                    .custom_claims_forward("...")
                    .custom_introspection_headers(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .hide_credentials(true)
                    .introspect_request(false)
                    .introspection_url("...my_introspection_url...")
                    .keepalive(2)
                    .run_on_preflight(true)
                    .timeout(8)
                    .token_type_hint("...my_token_type_hint...")
                    .ttl(1.29)
                    .build())
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .enabled(false)
                .gatewayPluginOauth2IntrospectionId("...my_id...")
                .instanceName("...my_instance_name...")
                .ordering(GatewayPluginOauth2IntrospectionOrderingArgs.builder()
                    .after(GatewayPluginOauth2IntrospectionOrderingAfterArgs.builder()
                        .access("...")
                        .build())
                    .before(GatewayPluginOauth2IntrospectionOrderingBeforeArgs.builder()
                        .access("...")
                        .build())
                    .build())
                .protocols("grpc")
                .route(GatewayPluginOauth2IntrospectionRouteArgs.builder()
                    .id("...my_id...")
                    .build())
                .service(GatewayPluginOauth2IntrospectionServiceArgs.builder()
                    .id("...my_id...")
                    .build())
                .tags("...")
                .build());
    
        }
    }
    
    resources:
      myGatewaypluginoauth2introspection:
        type: konnect:GatewayPluginOauth2Introspection
        properties:
          config:
            anonymous: '...my_anonymous...'
            authorization_value: '...my_authorization_value...'
            consumer_by: username
            custom_claims_forward:
              - '...'
            custom_introspection_headers:
              key:
                fn::toJSON: value
            hide_credentials: true
            introspect_request: false
            introspection_url: '...my_introspection_url...'
            keepalive: 2
            run_on_preflight: true
            timeout: 8
            token_type_hint: '...my_token_type_hint...'
            ttl: 1.29
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
          enabled: false
          gatewayPluginOauth2IntrospectionId: '...my_id...'
          instanceName: '...my_instance_name...'
          ordering:
            after:
              access:
                - '...'
            before:
              access:
                - '...'
          protocols:
            - grpc
          route:
            id: '...my_id...'
          service:
            id: '...my_id...'
          tags:
            - '...'
    

    Create GatewayPluginOauth2Introspection Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GatewayPluginOauth2Introspection(name: string, args: GatewayPluginOauth2IntrospectionArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayPluginOauth2Introspection(resource_name: str,
                                         args: GatewayPluginOauth2IntrospectionArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayPluginOauth2Introspection(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         config: Optional[GatewayPluginOauth2IntrospectionConfigArgs] = None,
                                         control_plane_id: Optional[str] = None,
                                         enabled: Optional[bool] = None,
                                         gateway_plugin_oauth2_introspection_id: Optional[str] = None,
                                         instance_name: Optional[str] = None,
                                         ordering: Optional[GatewayPluginOauth2IntrospectionOrderingArgs] = None,
                                         protocols: Optional[Sequence[str]] = None,
                                         route: Optional[GatewayPluginOauth2IntrospectionRouteArgs] = None,
                                         service: Optional[GatewayPluginOauth2IntrospectionServiceArgs] = None,
                                         tags: Optional[Sequence[str]] = None)
    func NewGatewayPluginOauth2Introspection(ctx *Context, name string, args GatewayPluginOauth2IntrospectionArgs, opts ...ResourceOption) (*GatewayPluginOauth2Introspection, error)
    public GatewayPluginOauth2Introspection(string name, GatewayPluginOauth2IntrospectionArgs args, CustomResourceOptions? opts = null)
    public GatewayPluginOauth2Introspection(String name, GatewayPluginOauth2IntrospectionArgs args)
    public GatewayPluginOauth2Introspection(String name, GatewayPluginOauth2IntrospectionArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayPluginOauth2Introspection
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GatewayPluginOauth2IntrospectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GatewayPluginOauth2IntrospectionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GatewayPluginOauth2IntrospectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayPluginOauth2IntrospectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayPluginOauth2IntrospectionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var gatewayPluginOauth2IntrospectionResource = new Konnect.GatewayPluginOauth2Introspection("gatewayPluginOauth2IntrospectionResource", new()
    {
        Config = new Konnect.Inputs.GatewayPluginOauth2IntrospectionConfigArgs
        {
            Anonymous = "string",
            AuthorizationValue = "string",
            ConsumerBy = "string",
            CustomClaimsForwards = new[]
            {
                "string",
            },
            CustomIntrospectionHeaders = 
            {
                { "string", "string" },
            },
            HideCredentials = false,
            IntrospectRequest = false,
            IntrospectionUrl = "string",
            Keepalive = 0,
            RunOnPreflight = false,
            Timeout = 0,
            TokenTypeHint = "string",
            Ttl = 0,
        },
        ControlPlaneId = "string",
        Enabled = false,
        GatewayPluginOauth2IntrospectionId = "string",
        InstanceName = "string",
        Ordering = new Konnect.Inputs.GatewayPluginOauth2IntrospectionOrderingArgs
        {
            After = new Konnect.Inputs.GatewayPluginOauth2IntrospectionOrderingAfterArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
            Before = new Konnect.Inputs.GatewayPluginOauth2IntrospectionOrderingBeforeArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
        },
        Protocols = new[]
        {
            "string",
        },
        Route = new Konnect.Inputs.GatewayPluginOauth2IntrospectionRouteArgs
        {
            Id = "string",
        },
        Service = new Konnect.Inputs.GatewayPluginOauth2IntrospectionServiceArgs
        {
            Id = "string",
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := konnect.NewGatewayPluginOauth2Introspection(ctx, "gatewayPluginOauth2IntrospectionResource", &konnect.GatewayPluginOauth2IntrospectionArgs{
    Config: &.GatewayPluginOauth2IntrospectionConfigArgs{
    Anonymous: pulumi.String("string"),
    AuthorizationValue: pulumi.String("string"),
    ConsumerBy: pulumi.String("string"),
    CustomClaimsForwards: pulumi.StringArray{
    pulumi.String("string"),
    },
    CustomIntrospectionHeaders: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    HideCredentials: pulumi.Bool(false),
    IntrospectRequest: pulumi.Bool(false),
    IntrospectionUrl: pulumi.String("string"),
    Keepalive: pulumi.Float64(0),
    RunOnPreflight: pulumi.Bool(false),
    Timeout: pulumi.Float64(0),
    TokenTypeHint: pulumi.String("string"),
    Ttl: pulumi.Float64(0),
    },
    ControlPlaneId: pulumi.String("string"),
    Enabled: pulumi.Bool(false),
    GatewayPluginOauth2IntrospectionId: pulumi.String("string"),
    InstanceName: pulumi.String("string"),
    Ordering: &.GatewayPluginOauth2IntrospectionOrderingArgs{
    After: &.GatewayPluginOauth2IntrospectionOrderingAfterArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    Before: &.GatewayPluginOauth2IntrospectionOrderingBeforeArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Protocols: pulumi.StringArray{
    pulumi.String("string"),
    },
    Route: &.GatewayPluginOauth2IntrospectionRouteArgs{
    Id: pulumi.String("string"),
    },
    Service: &.GatewayPluginOauth2IntrospectionServiceArgs{
    Id: pulumi.String("string"),
    },
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var gatewayPluginOauth2IntrospectionResource = new GatewayPluginOauth2Introspection("gatewayPluginOauth2IntrospectionResource", GatewayPluginOauth2IntrospectionArgs.builder()
        .config(GatewayPluginOauth2IntrospectionConfigArgs.builder()
            .anonymous("string")
            .authorizationValue("string")
            .consumerBy("string")
            .customClaimsForwards("string")
            .customIntrospectionHeaders(Map.of("string", "string"))
            .hideCredentials(false)
            .introspectRequest(false)
            .introspectionUrl("string")
            .keepalive(0)
            .runOnPreflight(false)
            .timeout(0)
            .tokenTypeHint("string")
            .ttl(0)
            .build())
        .controlPlaneId("string")
        .enabled(false)
        .gatewayPluginOauth2IntrospectionId("string")
        .instanceName("string")
        .ordering(GatewayPluginOauth2IntrospectionOrderingArgs.builder()
            .after(GatewayPluginOauth2IntrospectionOrderingAfterArgs.builder()
                .accesses("string")
                .build())
            .before(GatewayPluginOauth2IntrospectionOrderingBeforeArgs.builder()
                .accesses("string")
                .build())
            .build())
        .protocols("string")
        .route(GatewayPluginOauth2IntrospectionRouteArgs.builder()
            .id("string")
            .build())
        .service(GatewayPluginOauth2IntrospectionServiceArgs.builder()
            .id("string")
            .build())
        .tags("string")
        .build());
    
    gateway_plugin_oauth2_introspection_resource = konnect.GatewayPluginOauth2Introspection("gatewayPluginOauth2IntrospectionResource",
        config={
            "anonymous": "string",
            "authorization_value": "string",
            "consumer_by": "string",
            "custom_claims_forwards": ["string"],
            "custom_introspection_headers": {
                "string": "string",
            },
            "hide_credentials": False,
            "introspect_request": False,
            "introspection_url": "string",
            "keepalive": 0,
            "run_on_preflight": False,
            "timeout": 0,
            "token_type_hint": "string",
            "ttl": 0,
        },
        control_plane_id="string",
        enabled=False,
        gateway_plugin_oauth2_introspection_id="string",
        instance_name="string",
        ordering={
            "after": {
                "accesses": ["string"],
            },
            "before": {
                "accesses": ["string"],
            },
        },
        protocols=["string"],
        route={
            "id": "string",
        },
        service={
            "id": "string",
        },
        tags=["string"])
    
    const gatewayPluginOauth2IntrospectionResource = new konnect.GatewayPluginOauth2Introspection("gatewayPluginOauth2IntrospectionResource", {
        config: {
            anonymous: "string",
            authorizationValue: "string",
            consumerBy: "string",
            customClaimsForwards: ["string"],
            customIntrospectionHeaders: {
                string: "string",
            },
            hideCredentials: false,
            introspectRequest: false,
            introspectionUrl: "string",
            keepalive: 0,
            runOnPreflight: false,
            timeout: 0,
            tokenTypeHint: "string",
            ttl: 0,
        },
        controlPlaneId: "string",
        enabled: false,
        gatewayPluginOauth2IntrospectionId: "string",
        instanceName: "string",
        ordering: {
            after: {
                accesses: ["string"],
            },
            before: {
                accesses: ["string"],
            },
        },
        protocols: ["string"],
        route: {
            id: "string",
        },
        service: {
            id: "string",
        },
        tags: ["string"],
    });
    
    type: konnect:GatewayPluginOauth2Introspection
    properties:
        config:
            anonymous: string
            authorizationValue: string
            consumerBy: string
            customClaimsForwards:
                - string
            customIntrospectionHeaders:
                string: string
            hideCredentials: false
            introspectRequest: false
            introspectionUrl: string
            keepalive: 0
            runOnPreflight: false
            timeout: 0
            tokenTypeHint: string
            ttl: 0
        controlPlaneId: string
        enabled: false
        gatewayPluginOauth2IntrospectionId: string
        instanceName: string
        ordering:
            after:
                accesses:
                    - string
            before:
                accesses:
                    - string
        protocols:
            - string
        route:
            id: string
        service:
            id: string
        tags:
            - string
    

    GatewayPluginOauth2Introspection Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The GatewayPluginOauth2Introspection resource accepts the following input properties:

    Config GatewayPluginOauth2IntrospectionConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginOauth2IntrospectionOrdering
    Protocols List<string>
    A set of strings representing HTTP protocols.
    Route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    Config GatewayPluginOauth2IntrospectionConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginOauth2IntrospectionOrderingArgs
    Protocols []string
    A set of strings representing HTTP protocols.
    Route GatewayPluginOauth2IntrospectionRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginOauth2IntrospectionServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginOauth2IntrospectionConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginOauth2IntrospectionOrdering
    protocols List<String>
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginOauth2IntrospectionConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginOauth2IntrospectionOrdering
    protocols string[]
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginOauth2IntrospectionConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_oauth2_introspection_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginOauth2IntrospectionOrderingArgs
    protocols Sequence[str]
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing HTTP protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GatewayPluginOauth2Introspection resource produces the following output properties:

    CreatedAt double
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    CreatedAt float64
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    createdAt Double
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Double
    Unix epoch when the resource was last updated.
    createdAt number
    Unix epoch when the resource was created.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt number
    Unix epoch when the resource was last updated.
    created_at float
    Unix epoch when the resource was created.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at float
    Unix epoch when the resource was last updated.
    createdAt Number
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Look up Existing GatewayPluginOauth2Introspection Resource

    Get an existing GatewayPluginOauth2Introspection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GatewayPluginOauth2IntrospectionState, opts?: CustomResourceOptions): GatewayPluginOauth2Introspection
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[GatewayPluginOauth2IntrospectionConfigArgs] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[float] = None,
            enabled: Optional[bool] = None,
            gateway_plugin_oauth2_introspection_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            ordering: Optional[GatewayPluginOauth2IntrospectionOrderingArgs] = None,
            protocols: Optional[Sequence[str]] = None,
            route: Optional[GatewayPluginOauth2IntrospectionRouteArgs] = None,
            service: Optional[GatewayPluginOauth2IntrospectionServiceArgs] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[float] = None) -> GatewayPluginOauth2Introspection
    func GetGatewayPluginOauth2Introspection(ctx *Context, name string, id IDInput, state *GatewayPluginOauth2IntrospectionState, opts ...ResourceOption) (*GatewayPluginOauth2Introspection, error)
    public static GatewayPluginOauth2Introspection Get(string name, Input<string> id, GatewayPluginOauth2IntrospectionState? state, CustomResourceOptions? opts = null)
    public static GatewayPluginOauth2Introspection get(String name, Output<String> id, GatewayPluginOauth2IntrospectionState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayPluginOauth2Introspection    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config GatewayPluginOauth2IntrospectionConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginOauth2IntrospectionOrdering
    Protocols List<string>
    A set of strings representing HTTP protocols.
    Route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Config GatewayPluginOauth2IntrospectionConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginOauth2IntrospectionOrderingArgs
    Protocols []string
    A set of strings representing HTTP protocols.
    Route GatewayPluginOauth2IntrospectionRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginOauth2IntrospectionServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    config GatewayPluginOauth2IntrospectionConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginOauth2IntrospectionOrdering
    protocols List<String>
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    config GatewayPluginOauth2IntrospectionConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginOauth2IntrospectionOrdering
    protocols string[]
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    config GatewayPluginOauth2IntrospectionConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    created_at float
    Unix epoch when the resource was created.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_oauth2_introspection_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginOauth2IntrospectionOrderingArgs
    protocols Sequence[str]
    A set of strings representing HTTP protocols.
    route GatewayPluginOauth2IntrospectionRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginOauth2IntrospectionServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginOauth2IntrospectionId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing HTTP protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Supporting Types

    GatewayPluginOauth2IntrospectionConfig, GatewayPluginOauth2IntrospectionConfigArgs

    Anonymous string
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    AuthorizationValue string
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    ConsumerBy string
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    CustomClaimsForwards List<string>
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    CustomIntrospectionHeaders Dictionary<string, string>
    A list of custom headers to be added in the introspection request.
    HideCredentials bool
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    IntrospectRequest bool
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    IntrospectionUrl string
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    Keepalive double
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    RunOnPreflight bool
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    Timeout double
    An optional timeout in milliseconds when sending data to the upstream server.
    TokenTypeHint string
    The token_type_hint value to associate to introspection requests.
    Ttl double
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.
    Anonymous string
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    AuthorizationValue string
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    ConsumerBy string
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    CustomClaimsForwards []string
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    CustomIntrospectionHeaders map[string]string
    A list of custom headers to be added in the introspection request.
    HideCredentials bool
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    IntrospectRequest bool
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    IntrospectionUrl string
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    Keepalive float64
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    RunOnPreflight bool
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    Timeout float64
    An optional timeout in milliseconds when sending data to the upstream server.
    TokenTypeHint string
    The token_type_hint value to associate to introspection requests.
    Ttl float64
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.
    anonymous String
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    authorizationValue String
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    consumerBy String
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    customClaimsForwards List<String>
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    customIntrospectionHeaders Map<String,String>
    A list of custom headers to be added in the introspection request.
    hideCredentials Boolean
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    introspectRequest Boolean
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    introspectionUrl String
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    keepalive Double
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    runOnPreflight Boolean
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    timeout Double
    An optional timeout in milliseconds when sending data to the upstream server.
    tokenTypeHint String
    The token_type_hint value to associate to introspection requests.
    ttl Double
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.
    anonymous string
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    authorizationValue string
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    consumerBy string
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    customClaimsForwards string[]
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    customIntrospectionHeaders {[key: string]: string}
    A list of custom headers to be added in the introspection request.
    hideCredentials boolean
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    introspectRequest boolean
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    introspectionUrl string
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    keepalive number
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    runOnPreflight boolean
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    timeout number
    An optional timeout in milliseconds when sending data to the upstream server.
    tokenTypeHint string
    The token_type_hint value to associate to introspection requests.
    ttl number
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.
    anonymous str
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    authorization_value str
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    consumer_by str
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    custom_claims_forwards Sequence[str]
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    custom_introspection_headers Mapping[str, str]
    A list of custom headers to be added in the introspection request.
    hide_credentials bool
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    introspect_request bool
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    introspection_url str
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    keepalive float
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    run_on_preflight bool
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    timeout float
    An optional timeout in milliseconds when sending data to the upstream server.
    token_type_hint str
    The token_type_hint value to associate to introspection requests.
    ttl float
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.
    anonymous String
    An optional string (consumer UUID or username) value to use as an “anonymous” consumer if authentication fails. If empty (default null), the request fails with an authentication failure 4xx. Note that this value must refer to the consumer id or username attribute, and not its custom_id.
    authorizationValue String
    The value to set as the Authorization header when querying the introspection endpoint. This depends on the OAuth 2.0 server, but usually is the client_id and client_secret as a Base64-encoded Basic Auth string (Basic MG9hNWl...).
    consumerBy String
    A string indicating whether to associate OAuth2 username or client_id with the consumer's username. OAuth2 username is mapped to a consumer's username field, while an OAuth2 client_id maps to a consumer's custom_id. must be one of ["client_id", "username"]
    customClaimsForwards List<String>
    A list of custom claims to be forwarded from the introspection response to the upstream request. Claims are forwarded in headers with prefix X-Credential-{claim-name}.
    customIntrospectionHeaders Map<String>
    A list of custom headers to be added in the introspection request.
    hideCredentials Boolean
    An optional boolean value telling the plugin to hide the credential to the upstream API server. It will be removed by Kong before proxying the request.
    introspectRequest Boolean
    A boolean indicating whether to forward information about the current downstream request to the introspect endpoint. If true, headers X-Request-Path and X-Request-Http-Method will be inserted into the introspect request.
    introspectionUrl String
    A string representing a URL, such as https://example.com/path/to/resource?q=search.
    keepalive Number
    An optional value in milliseconds that defines how long an idle connection lives before being closed.
    runOnPreflight Boolean
    A boolean value that indicates whether the plugin should run (and try to authenticate) on OPTIONS preflight requests. If set to false, then OPTIONS requests will always be allowed.
    timeout Number
    An optional timeout in milliseconds when sending data to the upstream server.
    tokenTypeHint String
    The token_type_hint value to associate to introspection requests.
    ttl Number
    The TTL in seconds for the introspection response. Set to 0 to disable the expiration.

    GatewayPluginOauth2IntrospectionOrdering, GatewayPluginOauth2IntrospectionOrderingArgs

    GatewayPluginOauth2IntrospectionOrderingAfter, GatewayPluginOauth2IntrospectionOrderingAfterArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginOauth2IntrospectionOrderingBefore, GatewayPluginOauth2IntrospectionOrderingBeforeArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginOauth2IntrospectionRoute, GatewayPluginOauth2IntrospectionRouteArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    GatewayPluginOauth2IntrospectionService, GatewayPluginOauth2IntrospectionServiceArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    Import

    $ pulumi import konnect:index/gatewayPluginOauth2Introspection:GatewayPluginOauth2Introspection my_konnect_gateway_plugin_oauth2_introspection "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"plugin_id\": \"3473c251-5b6c-4f45-b1ff-7ede735a366d\"}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong