We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31565c4 + e1e7696 commit 9d99df1Copy full SHA for 9d99df1
src/api.ts
@@ -1,5 +1,5 @@
1
type BaseApiUrl =
2
- | "https://api.staging.vanta.com"
+ | "https://api.vanta.com"
3
| "https://api.eu.vanta.com"
4
| "https://api.aus.vanta.com";
5
@@ -10,9 +10,9 @@ export function baseApiUrl(): BaseApiUrl {
10
} else if (process.env.REGION === "aus") {
11
return "https://api.aus.vanta.com";
12
} else if (process.env.REGION === "us") {
13
- return "https://api.staging.vanta.com";
+ return "https://api.vanta.com";
14
}
15
throw new Error(`Invalid region: ${process.env.REGION}`);
16
17
18
terraform/main.tf
0 commit comments