published on Wednesday, Jul 29, 2026 by supabase
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:
- Project
Ref string - Project reference ID
- Custom
Jwks string - Jwks
Url string - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - Oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - Timeouts
Third
Party Auth Timeouts
- Project
Ref string - Project reference ID
- Custom
Jwks string - Jwks
Url string - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - Oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - Timeouts
Third
Party Auth Timeouts Args
- project_
ref string - Project reference ID
- custom_
jwks string - jwks_
url string - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - oidc_
issuer_ stringurl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - timeouts object
- project
Ref String - Project reference ID
- custom
Jwks String - jwks
Url String - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - oidc
Issuer StringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - timeouts
Third
Party Auth Timeouts
- project
Ref string - Project reference ID
- custom
Jwks string - jwks
Url string - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - timeouts
Third
Party Auth Timeouts
- project_
ref str - Project reference ID
- custom_
jwks str - jwks_
url str - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - oidc_
issuer_ strurl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - timeouts
Third
Party Auth Timeouts Args
- project
Ref String - Project reference ID
- custom
Jwks String - jwks
Url String - JWKS URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust be configured. - oidc
Issuer StringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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.
- 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.
- 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.
- 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.
- 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.
- 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 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.
- 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
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) -> ThirdPartyAuthfunc 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.
- 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, orcustom_jwksmust be configured. - Oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
Third
Party Auth Timeouts - Type string
- Third-party auth integration type
- Updated
At 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, orcustom_jwksmust be configured. - Oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
Third
Party Auth Timeouts Args - Type string
- Third-party auth integration type
- Updated
At 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, orcustom_jwksmust be configured. - oidc_
issuer_ stringurl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
- 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, orcustom_jwksmust be configured. - oidc
Issuer StringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
Third
Party Auth Timeouts - type String
- Third-party auth integration type
- updated
At 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, orcustom_jwksmust be configured. - oidc
Issuer stringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
Third
Party Auth Timeouts - type string
- Third-party auth integration type
- updated
At 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, orcustom_jwksmust be configured. - oidc_
issuer_ strurl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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
Third
Party Auth Timeouts Args - type str
- Third-party auth integration type
- updated_
at str - 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, orcustom_jwksmust be configured. - oidc
Issuer StringUrl - OIDC issuer URL. Exactly one of
oidc_issuer_url,jwks_url, orcustom_jwksmust 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 Property Map
- type String
- Third-party auth integration type
- updated
At 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
supabaseTerraform Provider.
published on Wednesday, Jul 29, 2026 by supabase