diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml
index 4a0295dd7..c666821d7 100644
--- a/.github/workflows/build-docs.yaml
+++ b/.github/workflows/build-docs.yaml
@@ -83,7 +83,6 @@ jobs:
echo "adding vanity url redirects to _redirects file.."
touch ./build/_redirects
array=(
- aws
confluent
github
openai
diff --git a/README.md b/README.md
index 529b99c70..e4f3a611b 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,6 @@ This repository contains documentation for StackQL providers, which is published
| --- | --- | -- |
| GitHub Actions Build | [](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml) | [stackql-registry-docs/actions](https://github.com/stackql/stackql-registry-docs/actions) |
| Netlify Deploy Base | [](https://app.netlify.com/sites/stackql-registry-docs/deploys) | [registry.stackql.io](https://registry.stackql.io) |
-| Netlify Deploy AWS | [](https://app.netlify.com/sites/stackql-aws-docs/deploys) | [aws-docs.stackql.io](https://aws-docs.stackql.io)
[aws.stackql.io](https://aws.stackql.io) |
| Netlify Deploy GitHub | [](https://app.netlify.com/sites/stackql-github-docs/deploys) | [github-docs.stackql.io](https://github-docs.stackql.io)
[github.stackql.io](https://github.stackql.io) |
| Netlify Deploy K8S | [](https://app.netlify.com/sites/stackql-k8s-docs/deploys) | [k8s-docs.stackql.io](https://k8s-docs.stackql.io)
[k8s.stackql.io](https://k8s.stackql.io) |
| Netlify Deploy Sumologic | [](https://app.netlify.com/sites/stackql-sumologic-docs/deploys) | [sumologic-docs.stackql.io](https://sumologic-docs.stackql.io)
[sumologic.stackql.io](https://sumologic.stackql.io) |
diff --git a/ci-scripts/get-providers-to-deploy.js b/ci-scripts/get-providers-to-deploy.js
index c717bf79a..025c3bd79 100644
--- a/ci-scripts/get-providers-to-deploy.js
+++ b/ci-scripts/get-providers-to-deploy.js
@@ -7,7 +7,7 @@ const regex = /^docs\/[a-zA-Z0-9_-]+-docs\/*/;;
const isMatchRegex = (path) => regex.test(path);
const rootName = 'root'
const allProviders = [
- 'aws',
+ // 'aws',
// 'azure',
// 'azure_extras',
// 'azure_isv',
diff --git a/package.json b/package.json
index aeda26688..cfbbdc6f4 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,6 @@
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
- "start:aws": "export REGISTRY=aws && docusaurus start",
"start:github": "export REGISTRY=github && docusaurus start",
"start:confluent": "export REGISTRY=confluent && docusaurus start",
"start:openai": "export REGISTRY=openai && docusaurus start",
@@ -15,7 +14,6 @@
"start:vercel": "export REGISTRY=vercel && docusaurus start",
"start:homebrew": "export REGISTRY=homebrew && docusaurus start",
"build:root": "docusaurus build",
- "build:aws": "export REGISTRY=aws && docusaurus build",
"build:github": "export REGISTRY=github && docusaurus build",
"build:confluent": "export REGISTRY=confluent && docusaurus build",
"build:openai": "export REGISTRY=openai && docusaurus build",
diff --git a/sidebars.js b/sidebars.js
index 997d3e53d..f7892b5f9 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -62,7 +62,8 @@ const getProviderSiteUrl = (name) =>{
'azure',
'azure_extras',
'azure_isv',
- 'azure_stack'
+ 'azure_stack',
+ 'aws'
].includes(name)) {
return `https://${name.replace('_', '-')}-provider.stackql.io/`
} else {
diff --git a/src/configs/providers.ts b/src/configs/providers.ts
index 29396e2c1..bef7604bf 100644
--- a/src/configs/providers.ts
+++ b/src/configs/providers.ts
@@ -52,7 +52,8 @@ export const getProviderSiteUrl = (name: string) =>{
'azure',
'azure_extras',
'azure_isv',
- 'azure_stack'
+ 'azure_stack',
+ 'aws',
].includes(name)) {
return `https://${name.replace('_', '-')}-provider.stackql.io/`
} else {