12 lines
421 B
JavaScript
12 lines
421 B
JavaScript
// These parameters are all optional.
|
|
// token will use the environment $TOKEN (must be exported) if unspecified.
|
|
// using the environment variable is the recommended way to declare your token
|
|
// downloadDir will use the current directory if unspecified
|
|
// base_url will use app.terraform.io if unspecified
|
|
|
|
export const config = {};
|
|
|
|
config.token = "";
|
|
config.downloadDir = "";
|
|
config.base_url = "";
|
|
config.run_id = ""; |