TerraformReferencePage() — supabase Function Reference
Architecture documentation for the TerraformReferencePage() function in page.tsx from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 5cb41408_b4f6_1668_2f89_bdc8aef17916["TerraformReferencePage()"] e0881afa_462e_59a0_7535_7484f1fe56ba["getSchema()"] 5cb41408_b4f6_1668_2f89_bdc8aef17916 -->|calls| e0881afa_462e_59a0_7535_7484f1fe56ba 70c06384_8dda_31de_ba22_ce75a80729a6["newEditLink()"] 5cb41408_b4f6_1668_2f89_bdc8aef17916 -->|calls| 70c06384_8dda_31de_ba22_ce75a80729a6 style 5cb41408_b4f6_1668_2f89_bdc8aef17916 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/app/guides/deployment/terraform/reference/page.tsx lines 355–391
const TerraformReferencePage = async () => {
const { schema } = await getSchema()
const editLink = newEditLink('supabase/terraform-provider-supabase')
return (
<GuideTemplate meta={meta} editLink={editLink}>
The Terraform Provider provices access to{' '}
<Link
href="https://developer.hashicorp.com/terraform/language/resources"
rel="noopener noreferrer"
>
resources
</Link>{' '}
and{' '}
<Link
href="https://developer.hashicorp.com/terraform/language/data-sources"
rel="noreferrer noopener"
>
data sources
</Link>
. Resources are infrastructure objects, such as a Supabase project, that you can declaratively
configure. Data sources are sources of information about your Supabase instances.
<ProviderSettings
schema={schema.provider_schemas['registry.terraform.io/supabase/supabase'].provider}
/>
<Resources
schema={schema.provider_schemas['registry.terraform.io/supabase/supabase'].resource_schemas}
/>
<DataSources
schema={
schema.provider_schemas['registry.terraform.io/supabase/supabase'].data_source_schemas
}
/>
</GuideTemplate>
)
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does TerraformReferencePage() do?
TerraformReferencePage() is a function in the supabase codebase.
What does TerraformReferencePage() call?
TerraformReferencePage() calls 2 function(s): getSchema, newEditLink.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free