Skip to content

Commit

Permalink
fix: remove unused props
Browse files Browse the repository at this point in the history
  • Loading branch information
pflorek committed Nov 9, 2021
1 parent 3c80866 commit ad6917d
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const process = require("process");
import { App } from "@aws-cdk/core";
import { GitlabRunnerStack } from "./cdk-gitlab-runner-stack";

Expand All @@ -10,18 +9,7 @@ const prodEnv = {
const app = new App();

new GitlabRunnerStack(app, "GitlabRunnerStack", {
gitlabUrl: "", // URL of your GitLab instance
gitlabToken: "",
gitlabMaxBuilds: "",
gitlabMaxConcurrentBuilds: "",
gitlabIdleCount: "",
gitlabIdleTime: "",
gitlabOffPeakTimezone: "",
gitlabOffPeakIdleCount: "",
gitlabOffPeakIdleTime: "",
gitlabCheckInterval: "",
gitlabRunnerSpotInstance: "",
gitlabRunnerSpotInstancePrice: "",
vpcIdToLookUp: "vpc-0c8e4fbcc7f6b524a",
env: prodEnv,
});

Expand Down

0 comments on commit ad6917d

Please sign in to comment.