1. Packages
  2. Packages
  3. Supabase Provider
  4. API Docs
  5. ThirdPartyAuth
Viewing docs for supabase 1.10.1
published on Wednesday, Jul 29, 2026 by supabase
supabase logo
Viewing docs for supabase 1.10.1
published on Wednesday, Jul 29, 2026 by supabase

    Third-party auth resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as supabase from "@pulumi/supabase";
    
    const oidc = new supabase.ThirdPartyAuth("oidc", {
        projectRef: "mayuaycdtijbctgqbycg",
        oidcIssuerUrl: "https://issuer.example.com",
    });
    const jwksUrl = new supabase.ThirdPartyAuth("jwks_url", {
        projectRef: "mayuaycdtijbctgqbycg",
        jwksUrl: "https://issuer.example.com/.well-known/jwks.json",
    });
    const customJwks = new supabase.ThirdPartyAuth("custom_jwks", {
        projectRef: "mayuaycdtijbctgqbycg",
        customJwks: JSON.stringify({
            keys: [{
                kty: "RSA",
                kid: "example-key",
                n: "example-modulus",
                e: "AQAB",
            }],
        }),
    });
    
    import pulumi
    import json
    import pulumi_supabase as supabase
    
    oidc = supabase.ThirdPartyAuth("oidc",
        project_ref="mayuaycdtijbctgqbycg",
        oidc_issuer_url="https://issuer.example.com")
    jwks_url = supabase.ThirdPartyAuth("jwks_url",
        project_ref="mayuaycdtijbctgqbycg",
        jwks_url="https://issuer.example.com/.well-known/jwks.json")
    custom_jwks = supabase.ThirdPartyAuth("custom_jwks",
        project_ref="mayuaycdtijbctgqbycg",
        custom_jwks=json.dumps({
            "keys": [{
                "kty": "RSA",
                "kid": "example-key",
                "n": "example-modulus",
                "e": "AQAB",
            }],
        }))
    
    package main
    
    import (
    	"encoding/json"
    
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/supabase/supabase"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := supabase.NewThirdPartyAuth(ctx, "oidc", &supabase.ThirdPartyAuthArgs{
    			ProjectRef:    pulumi.String("mayuaycdtijbctgqbycg"),
    			OidcIssuerUrl: pulumi.String("https://issuer.example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = supabase.NewThirdPartyAuth(ctx, "jwks_url", &supabase.ThirdPartyAuthArgs{
    			ProjectRef: pulumi.String("mayuaycdtijbctgqbycg"),
    			JwksUrl:    pulumi.String("https://issuer.example.com/.well-known/jwks.json"),
    		})
    		if err != nil {
    			return err
    		}
    		tmpJSON0, err := json.Marshal(map[string]interface{}{
    			"keys": []map[string]interface{}{
    				map[string]interface{}{
    					"kty": "RSA",
    					"kid": "example-key",
    					"n":   "example-modulus",
    					"e":   "AQAB",
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		_, err = supabase.NewThirdPartyAuth(ctx, "custom_jwks", &supabase.ThirdPartyAuthArgs{
    			ProjectRef: pulumi.String("mayuaycdtijbctgqbycg"),
    			CustomJwks: pulumi.String(json0),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Supabase = Pulumi.Supabase;
    
    return await Deployment.RunAsync(() => 
    {
        var oidc = new Supabase.ThirdPartyAuth("oidc", new()
        {
            ProjectRef = "mayuaycdtijbctgqbycg",
            OidcIssuerUrl = "https://issuer.example.com",
        });
    
        var jwksUrl = new Supabase.ThirdPartyAuth("jwks_url", new()
        {
            ProjectRef = "mayuaycdtijbctgqbycg",
            JwksUrl = "https://issuer.example.com/.well-known/jwks.json",
        });
    
        var customJwks = new Supabase.ThirdPartyAuth("custom_jwks", new()
        {
            ProjectRef = "mayuaycdtijbctgqbycg",
            CustomJwks = JsonSerializer.Serialize(new Dictionary<string, object?>
            {
                ["keys"] = new[]
                {
                    new Dictionary<string, object?>
                    {
                        ["kty"] = "RSA",
                        ["kid"] = "example-key",
                        ["n"] = "example-modulus",
                        ["e"] = "AQAB",
                    },
                },
            }),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.supabase.ThirdPartyAuth;
    import com.pulumi.supabase.ThirdPartyAuthArgs;
    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 oidc = new ThirdPartyAuth("oidc", ThirdPartyAuthArgs.builder()
                .projectRef("mayuaycdtijbctgqbycg")
                .oidcIssuerUrl("https://issuer.example.com")
                .build());
    
            var jwksUrl = new ThirdPartyAuth("jwksUrl", ThirdPartyAuthArgs.builder()
                .projectRef("mayuaycdtijbctgqbycg")
                .jwksUrl("https://issuer.example.com/.well-known/jwks.json")
                .build());
    
            var customJwks = new ThirdPartyAuth("customJwks", ThirdPartyAuthArgs.builder()
                .projectRef("mayuaycdtijbctgqbycg")
                .customJwks(serializeJson(
                    jsonObject(
                        jsonProperty("keys", jsonArray(jsonObject(
                            jsonProperty("kty", "RSA"),
                            jsonProperty("kid", "example-key"),
                            jsonProperty("n", "example-modulus"),
                            jsonProperty("e", "AQAB")
                        )))
                    )))
                .build());
    
        }
    }
    
    resources:
      oidc:
        type: supabase:ThirdPartyAuth
        properties:
          projectRef: mayuaycdtijbctgqbycg
          oidcIssuerUrl: https://issuer.example.com
      jwksUrl:
        type: supabase:ThirdPartyAuth
        name: jwks_url
        properties:
          projectRef: mayuaycdtijbctgqbycg
          jwksUrl: https://issuer.example.com/.well-known/jwks.json
      customJwks:
        type: supabase:ThirdPartyAuth
        name: custom_jwks
        properties:
          projectRef: mayuaycdtijbctgqbycg
          customJwks:
            fn::toJSON:
              keys:
                - kty: RSA
                  kid: example-key
                  n: example-modulus
                  e: AQAB
    
    Example coming soon!
    

    Create ThirdPartyAuth Resource

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

    Constructor syntax

    new ThirdPartyAuth(name: string, args: ThirdPartyAuthArgs, opts?: CustomResourceOptions);
    @overload
    def ThirdPartyAuth(resource_name: str,
                       args: ThirdPartyAuthArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ThirdPartyAuth(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       project_ref: Optional[str] = None,
                       custom_jwks: Optional[str] = None,
                       jwks_url: Optional[str] = None,
                       oidc_issuer_url: Optional[str] = None,
                       timeouts: Optional[ThirdPartyAuthTimeoutsArgs] = None)
    func NewThirdPartyAuth(ctx *Context, name string, args ThirdPartyAuthArgs, opts ...ResourceOption) (*ThirdPartyAuth, error)
    public ThirdPartyAuth(string name, ThirdPartyAuthArgs args, CustomResourceOptions? opts = null)
    public ThirdPartyAuth(String name, ThirdPartyAuthArgs args)
    public ThirdPartyAuth(String name, ThirdPartyAuthArgs args, CustomResourceOptions options)
    
    type: supabase:ThirdPartyAuth
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "supabase_third_party_auth" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ThirdPartyAuthArgs
    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 ThirdPartyAuthArgs
    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 ThirdPartyAuthArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ThirdPartyAuthArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ThirdPartyAuthArgs
    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 thirdPartyAuthResource = new Supabase.ThirdPartyAuth("thirdPartyAuthResource", new()
    {
        ProjectRef = "string",
        CustomJwks = "string",
        JwksUrl = "string",
        OidcIssuerUrl = "string",
        Timeouts = new Supabase.Inputs.ThirdPartyAuthTimeoutsArgs
        {
            Create = "string",
        },
    });
    
    example, err := supabase.NewThirdPartyAuth(ctx, "thirdPartyAuthResource", &supabase.ThirdPartyAuthArgs{
    	ProjectRef:    pulumi.String("string"),
    	CustomJwks:    pulumi.String("string"),
    	JwksUrl:       pulumi.String("string"),
    	OidcIssuerUrl: pulumi.String("string"),
    	Timeouts: &supabase.ThirdPartyAuthTimeoutsArgs{
    		Create: pulumi.String("string"),
    	},
    })
    
    resource "supabase_third_party_auth" "thirdPartyAuthResource" {
      lifecycle {
        create_before_destroy = true
      }
      project_ref     = "string"
      custom_jwks     = "string"
      jwks_url        = "string"
      oidc_issuer_url = "string"
      timeouts = {
        create = "string"
      }
    }
    
    var thirdPartyAuthResource = new ThirdPartyAuth("thirdPartyAuthResource", ThirdPartyAuthArgs.builder()
        .projectRef("string")
        .customJwks("string")
        .jwksUrl("string")
        .oidcIssuerUrl("string")
        .timeouts(ThirdPartyAuthTimeoutsArgs.builder()
            .create("string")
            .build())
        .build());
    
    third_party_auth_resource = supabase.ThirdPartyAuth("thirdPartyAuthResource",
        project_ref="string",
        custom_jwks="string",
        jwks_url="string",
        oidc_issuer_url="string",
        timeouts={
            "create": "string",
        })
    
    const thirdPartyAuthResource = new supabase.ThirdPartyAuth("thirdPartyAuthResource", {
        projectRef: "string",
        customJwks: "string",
        jwksUrl: "string",
        oidcIssuerUrl: "string",
        timeouts: {
            create: "string",
        },
    });
    
    type: supabase:ThirdPartyAuth
    properties:
        customJwks: string
        jwksUrl: string
        oidcIssuerUrl: string
        projectRef: string
        timeouts:
            create: string
    

    ThirdPartyAuth 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 ThirdPartyAuth resource accepts the following input properties:

    ProjectRef string
    Project reference ID
    CustomJwks string
    JwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    OidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    Timeouts ThirdPartyAuthTimeouts
    ProjectRef string
    Project reference ID
    CustomJwks string
    JwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    OidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    Timeouts ThirdPartyAuthTimeoutsArgs
    project_ref string
    Project reference ID
    custom_jwks string
    jwks_url string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidc_issuer_url string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    timeouts object
    projectRef String
    Project reference ID
    customJwks String
    jwksUrl String
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl String
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    timeouts ThirdPartyAuthTimeouts
    projectRef string
    Project reference ID
    customJwks string
    jwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    timeouts ThirdPartyAuthTimeouts
    project_ref str
    Project reference ID
    custom_jwks str
    jwks_url str
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidc_issuer_url str
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    timeouts ThirdPartyAuthTimeoutsArgs
    projectRef String
    Project reference ID
    customJwks String
    jwksUrl String
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl String
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    InsertedAt string
    Timestamp when the integration was created
    ResolvedAt string
    Timestamp when JWKS was last resolved
    ResolvedJwks string
    Resolved JWKS as serialised JSON
    Type string
    Third-party auth integration type
    UpdatedAt string
    Timestamp when the integration was last updated
    Id string
    The provider-assigned unique ID for this managed resource.
    InsertedAt string
    Timestamp when the integration was created
    ResolvedAt string
    Timestamp when JWKS was last resolved
    ResolvedJwks string
    Resolved JWKS as serialised JSON
    Type string
    Third-party auth integration type
    UpdatedAt string
    Timestamp when the integration was last updated
    id string
    The provider-assigned unique ID for this managed resource.
    inserted_at string
    Timestamp when the integration was created
    resolved_at string
    Timestamp when JWKS was last resolved
    resolved_jwks string
    Resolved JWKS as serialised JSON
    type string
    Third-party auth integration type
    updated_at string
    Timestamp when the integration was last updated
    id String
    The provider-assigned unique ID for this managed resource.
    insertedAt String
    Timestamp when the integration was created
    resolvedAt String
    Timestamp when JWKS was last resolved
    resolvedJwks String
    Resolved JWKS as serialised JSON
    type String
    Third-party auth integration type
    updatedAt String
    Timestamp when the integration was last updated
    id string
    The provider-assigned unique ID for this managed resource.
    insertedAt string
    Timestamp when the integration was created
    resolvedAt string
    Timestamp when JWKS was last resolved
    resolvedJwks string
    Resolved JWKS as serialised JSON
    type string
    Third-party auth integration type
    updatedAt string
    Timestamp when the integration was last updated
    id str
    The provider-assigned unique ID for this managed resource.
    inserted_at str
    Timestamp when the integration was created
    resolved_at str
    Timestamp when JWKS was last resolved
    resolved_jwks str
    Resolved JWKS as serialised JSON
    type str
    Third-party auth integration type
    updated_at str
    Timestamp when the integration was last updated
    id String
    The provider-assigned unique ID for this managed resource.
    insertedAt String
    Timestamp when the integration was created
    resolvedAt String
    Timestamp when JWKS was last resolved
    resolvedJwks String
    Resolved JWKS as serialised JSON
    type String
    Third-party auth integration type
    updatedAt String
    Timestamp when the integration was last updated

    Look up Existing ThirdPartyAuth Resource

    Get an existing ThirdPartyAuth 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?: ThirdPartyAuthState, opts?: CustomResourceOptions): ThirdPartyAuth
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom_jwks: Optional[str] = None,
            inserted_at: Optional[str] = None,
            jwks_url: Optional[str] = None,
            oidc_issuer_url: Optional[str] = None,
            project_ref: Optional[str] = None,
            resolved_at: Optional[str] = None,
            resolved_jwks: Optional[str] = None,
            timeouts: Optional[ThirdPartyAuthTimeoutsArgs] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None) -> ThirdPartyAuth
    func GetThirdPartyAuth(ctx *Context, name string, id IDInput, state *ThirdPartyAuthState, opts ...ResourceOption) (*ThirdPartyAuth, error)
    public static ThirdPartyAuth Get(string name, Input<string> id, ThirdPartyAuthState? state, CustomResourceOptions? opts = null)
    public static ThirdPartyAuth get(String name, Output<String> id, ThirdPartyAuthState state, CustomResourceOptions options)
    resources:  _:    type: supabase:ThirdPartyAuth    get:      id: ${id}
    import {
      to = supabase_third_party_auth.example
      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:
    CustomJwks string
    InsertedAt string
    Timestamp when the integration was created
    JwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    OidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    ProjectRef string
    Project reference ID
    ResolvedAt string
    Timestamp when JWKS was last resolved
    ResolvedJwks string
    Resolved JWKS as serialised JSON
    Timeouts ThirdPartyAuthTimeouts
    Type string
    Third-party auth integration type
    UpdatedAt string
    Timestamp when the integration was last updated
    CustomJwks string
    InsertedAt string
    Timestamp when the integration was created
    JwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    OidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    ProjectRef string
    Project reference ID
    ResolvedAt string
    Timestamp when JWKS was last resolved
    ResolvedJwks string
    Resolved JWKS as serialised JSON
    Timeouts ThirdPartyAuthTimeoutsArgs
    Type string
    Third-party auth integration type
    UpdatedAt string
    Timestamp when the integration was last updated
    custom_jwks string
    inserted_at string
    Timestamp when the integration was created
    jwks_url string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidc_issuer_url string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    project_ref string
    Project reference ID
    resolved_at string
    Timestamp when JWKS was last resolved
    resolved_jwks string
    Resolved JWKS as serialised JSON
    timeouts object
    type string
    Third-party auth integration type
    updated_at string
    Timestamp when the integration was last updated
    customJwks String
    insertedAt String
    Timestamp when the integration was created
    jwksUrl String
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl String
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    projectRef String
    Project reference ID
    resolvedAt String
    Timestamp when JWKS was last resolved
    resolvedJwks String
    Resolved JWKS as serialised JSON
    timeouts ThirdPartyAuthTimeouts
    type String
    Third-party auth integration type
    updatedAt String
    Timestamp when the integration was last updated
    customJwks string
    insertedAt string
    Timestamp when the integration was created
    jwksUrl string
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl string
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    projectRef string
    Project reference ID
    resolvedAt string
    Timestamp when JWKS was last resolved
    resolvedJwks string
    Resolved JWKS as serialised JSON
    timeouts ThirdPartyAuthTimeouts
    type string
    Third-party auth integration type
    updatedAt string
    Timestamp when the integration was last updated
    custom_jwks str
    inserted_at str
    Timestamp when the integration was created
    jwks_url str
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidc_issuer_url str
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    project_ref str
    Project reference ID
    resolved_at str
    Timestamp when JWKS was last resolved
    resolved_jwks str
    Resolved JWKS as serialised JSON
    timeouts ThirdPartyAuthTimeoutsArgs
    type str
    Third-party auth integration type
    updated_at str
    Timestamp when the integration was last updated
    customJwks String
    insertedAt String
    Timestamp when the integration was created
    jwksUrl String
    JWKS URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    oidcIssuerUrl String
    OIDC issuer URL. Exactly one of oidc_issuer_url, jwks_url, or custom_jwks must be configured.
    projectRef String
    Project reference ID
    resolvedAt String
    Timestamp when JWKS was last resolved
    resolvedJwks String
    Resolved JWKS as serialised JSON
    timeouts Property Map
    type String
    Third-party auth integration type
    updatedAt String
    Timestamp when the integration was last updated

    Supporting Types

    ThirdPartyAuthTimeouts, ThirdPartyAuthTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    The pulumi import command can be used, for example:

    Third-party auth integrations can be imported using the project reference and

    the third-party auth integration ID, separated by a ‘/’.

    • project_ref: Found in the Supabase dashboard under Project Settings -> General,

      or in the project’s URL: https://supabase.com/dashboard/project/<project_ref>

    • third_party_auth_id: The UUID of the third-party auth integration.

    $ pulumi import supabase:index/thirdPartyAuth:ThirdPartyAuth oidc <project_ref>/<third_party_auth_id>
    

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

    Package Details

    Repository
    supabase supabase/terraform-provider-supabase
    License
    Notes
    This Pulumi package is based on the supabase Terraform Provider.
    supabase logo
    Viewing docs for supabase 1.10.1
    published on Wednesday, Jul 29, 2026 by supabase

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial