This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-31 10:51:45 +00:00
|
|
|
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(
|
2023-07-06 10:00:54 +00:00
|
|
|
"https://registry.terraform.io/providers/goauthentik/authentik/latest/docs",
|
2023-05-31 10:51:45 +00:00
|
|
|
);
|
|
|
|
}}
|
|
|
|
</BrowserOnly>
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
export default TerraformProviderPage;
|