mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
import * as pulumi from '@pulumi/pulumi';
|
|
|
|
export interface DeploymentEnvironment {
|
|
ENVIRONMENT: string;
|
|
NODE_ENV: string;
|
|
DEPLOYED_DNS: string;
|
|
}
|
|
|
|
export interface RegistryConfig {
|
|
registry: string;
|
|
registryToken: pulumi.Output<string>;
|
|
registryScope: string;
|
|
}
|