Module config
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the
pulumi/pulumi-gitlabrepo; however, if that doesn’t turn up anything, please consult the sourceterraform-providers/terraform-provider-gitlabrepo.
APIs
APIs
let baseUrl
let baseUrl: string | undefined = __config.get("baseUrl") || utilities.getEnv("GITLAB_BASE_URL");The GitLab Base API URL
let cacertFile
let cacertFile: string | undefined = __config.get("cacertFile");A file containing the ca certificate to use in case ssl certificate is not from a standard chain
let clientCert
let clientCert: string | undefined = __config.get("clientCert");File path to client certificate when GitLab instance is behind company proxy. File must contain PEM encoded data.
let clientKey
let clientKey: string | undefined = __config.get("clientKey");File path to client key when GitLab instance is behind company proxy. File must contain PEM encoded data.
let insecure
let insecure: boolean | undefined = __config.getObject<boolean>("insecure");Disable SSL verification of API calls
let token
let token: string | undefined = __config.get("token") || utilities.getEnv("GITLAB_TOKEN");The OAuth token used to connect to GitLab.