d14a2906f5
* website: bump prettier from 2.8.8 to 3.0.0 in /website Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * prettier Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
26 lines
859 B
JavaScript
26 lines
859 B
JavaScript
import React from "react";
|
|
import Layout from "@theme/Layout";
|
|
import Head from "@docusaurus/Head";
|
|
import BrowserOnly from "@docusaurus/core/lib/client/exports/BrowserOnly";
|
|
|
|
function TerraformProviderPage() {
|
|
return (
|
|
<Layout title="terraform-provider">
|
|
<Head>
|
|
<meta
|
|
name="go-import"
|
|
content="goauthentik.io/terraform-provider-authentik git https://github.com/goauthentik/terraform-provider-authentik"
|
|
></meta>
|
|
</Head>
|
|
<BrowserOnly>
|
|
{() => {
|
|
window.location.assign(
|
|
"https://registry.terraform.io/providers/goauthentik/authentik/latest/docs",
|
|
);
|
|
}}
|
|
</BrowserOnly>
|
|
</Layout>
|
|
);
|
|
}
|
|
export default TerraformProviderPage;
|