mirror of
https://github.com/supabase/supabase.git
synced 2026-09-07 18:38:50 +08:00
33 lines
830 B
TypeScript
33 lines
830 B
TypeScript
import type { FederatedContentSource } from '../types'
|
|
|
|
// We fetch these docs at build time from an external repo
|
|
const terraform: FederatedContentSource = {
|
|
section: 'deployment/terraform',
|
|
org: 'supabase',
|
|
repo: 'terraform-provider-supabase',
|
|
branch: 'v1.1.3',
|
|
docsDir: 'docs',
|
|
externalSite: 'https://github.com/supabase/terraform-provider-supabase/blob/v1.1.3',
|
|
rawFallback: true,
|
|
pageMap: [
|
|
{
|
|
meta: {
|
|
title: 'Terraform Provider',
|
|
},
|
|
remoteFile: 'README.md',
|
|
useRoot: true,
|
|
dropLeadingHeading: true,
|
|
},
|
|
{
|
|
slug: 'tutorial',
|
|
meta: {
|
|
title: 'Using the Supabase Terraform Provider',
|
|
},
|
|
remoteFile: 'tutorial.md',
|
|
},
|
|
],
|
|
rawFiles: [{ remoteFile: 'schema.json', outFile: 'terraform.schema.json' }],
|
|
}
|
|
|
|
export default terraform
|