@pulumi/gitlab 8.4.0-alpha.1726827157 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/applicationSettings.d.ts +302 -0
- package/applicationSettings.js +50 -0
- package/applicationSettings.js.map +1 -1
- package/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/getPipelineSchedule.d.ts +130 -0
- package/getPipelineSchedule.js +60 -0
- package/getPipelineSchedule.js.map +1 -0
- package/getPipelineSchedules.d.ts +68 -0
- package/getPipelineSchedules.js +54 -0
- package/getPipelineSchedules.js.map +1 -0
- package/getProjectProtectedTag.d.ts +61 -0
- package/getProjectProtectedTag.js +34 -0
- package/getProjectProtectedTag.js.map +1 -0
- package/getProjectProtectedTags.d.ts +49 -0
- package/getProjectProtectedTags.js +32 -0
- package/getProjectProtectedTags.js.map +1 -0
- package/group.d.ts +33 -0
- package/group.js +17 -0
- package/group.js.map +1 -1
- package/index.d.ts +18 -0
- package/index.js +26 -4
- package/index.js.map +1 -1
- package/integrationJira.d.ts +79 -67
- package/integrationJira.js +15 -16
- package/integrationJira.js.map +1 -1
- package/memberRole.d.ts +133 -0
- package/memberRole.js +82 -0
- package/memberRole.js.map +1 -0
- package/package.json +2 -2
- package/project.d.ts +12 -0
- package/project.js +2 -0
- package/project.js.map +1 -1
- package/projectApprovalRule.d.ts +15 -3
- package/projectApprovalRule.js +2 -0
- package/projectApprovalRule.js.map +1 -1
- package/projectPushRules.d.ts +12 -0
- package/projectPushRules.js +2 -0
- package/projectPushRules.js.map +1 -1
- package/provider.d.ts +4 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/serviceJira.d.ts +79 -67
- package/serviceJira.js +15 -16
- package/serviceJira.js.map +1 -1
- package/tagProtection.d.ts +7 -7
- package/tagProtection.js +0 -3
- package/tagProtection.js.map +1 -1
- package/types/input.d.ts +46 -2
- package/types/output.d.ts +230 -2
- package/user.d.ts +24 -0
- package/user.js +4 -0
- package/user.js.map +1 -1
- package/userImpersonationToken.d.ts +162 -0
- package/userImpersonationToken.js +108 -0
- package/userImpersonationToken.js.map +1 -0
package/applicationSettings.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* ## Example Usage
|
|
4
6
|
*/
|
|
@@ -42,6 +44,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
42
44
|
* (If enabled, requires: akismet*api*key) Enable or disable Akismet spam protection.
|
|
43
45
|
*/
|
|
44
46
|
readonly akismetEnabled: pulumi.Output<boolean>;
|
|
47
|
+
/**
|
|
48
|
+
* Set to true to allow users to delete their accounts. Premium and Ultimate only.
|
|
49
|
+
*/
|
|
50
|
+
readonly allowAccountDeletion: pulumi.Output<boolean>;
|
|
45
51
|
/**
|
|
46
52
|
* Set to true to allow group owners to manage LDAP.
|
|
47
53
|
*/
|
|
@@ -54,10 +60,22 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
54
60
|
* Allow requests to the local network from web hooks and services.
|
|
55
61
|
*/
|
|
56
62
|
readonly allowLocalRequestsFromWebHooksAndServices: pulumi.Output<boolean>;
|
|
63
|
+
/**
|
|
64
|
+
* Indicates whether users assigned up to the Guest role can create groups and personal projects.
|
|
65
|
+
*/
|
|
66
|
+
readonly allowProjectCreationForGuestAndBelow: pulumi.Output<boolean>;
|
|
67
|
+
/**
|
|
68
|
+
* Allow using a registration token to create a runner.
|
|
69
|
+
*/
|
|
70
|
+
readonly allowRunnerRegistrationToken: pulumi.Output<boolean>;
|
|
57
71
|
/**
|
|
58
72
|
* Set the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years.
|
|
59
73
|
*/
|
|
60
74
|
readonly archiveBuildsInHumanReadable: pulumi.Output<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Maximum limit of AsciiDoc include directives being processed in any one document. Maximum: 64.
|
|
77
|
+
*/
|
|
78
|
+
readonly asciidocMaxIncludes: pulumi.Output<number>;
|
|
61
79
|
/**
|
|
62
80
|
* Assets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes.
|
|
63
81
|
*/
|
|
@@ -78,6 +96,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
78
96
|
* By default, we write to the authorizedKeys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand.
|
|
79
97
|
*/
|
|
80
98
|
readonly authorizedKeysEnabled: pulumi.Output<boolean>;
|
|
99
|
+
/**
|
|
100
|
+
* When enabled, users will get automatically banned from the application when they download more than the maximum number of unique projects in the time period specified by max*number*of*repository*downloads and max*number*of*repository*downloads*within*time_period respectively. Introduced in GitLab 15.4. Self-managed, Ultimate only.
|
|
101
|
+
*/
|
|
102
|
+
readonly autoBanUserOnExcessiveProjectsDownload: pulumi.Output<boolean>;
|
|
81
103
|
/**
|
|
82
104
|
* Specify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages.
|
|
83
105
|
*/
|
|
@@ -90,6 +112,18 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
90
112
|
* Enabling this permits automatic allocation of purchased storage in a namespace.
|
|
91
113
|
*/
|
|
92
114
|
readonly automaticPurchasedStorageAllocation: pulumi.Output<boolean>;
|
|
115
|
+
/**
|
|
116
|
+
* Maximum simultaneous Direct Transfer batches to process.
|
|
117
|
+
*/
|
|
118
|
+
readonly bulkImportConcurrentPipelineBatchLimit: pulumi.Output<number>;
|
|
119
|
+
/**
|
|
120
|
+
* Enable migrating GitLab groups by direct transfer. Introduced in GitLab 15.8.
|
|
121
|
+
*/
|
|
122
|
+
readonly bulkImportEnabled: pulumi.Output<boolean>;
|
|
123
|
+
/**
|
|
124
|
+
* Maximum download file size when importing from source GitLab instances by direct transfer. Introduced in GitLab 16.3.
|
|
125
|
+
*/
|
|
126
|
+
readonly bulkImportMaxDownloadFileSize: pulumi.Output<number>;
|
|
93
127
|
/**
|
|
94
128
|
* Indicates whether users can create top-level groups. Introduced in GitLab 15.5.
|
|
95
129
|
*/
|
|
@@ -98,10 +132,30 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
98
132
|
* Enabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public.
|
|
99
133
|
*/
|
|
100
134
|
readonly checkNamespacePlan: pulumi.Output<boolean>;
|
|
135
|
+
/**
|
|
136
|
+
* The maximum number of includes per pipeline.
|
|
137
|
+
*/
|
|
138
|
+
readonly ciMaxIncludes: pulumi.Output<number>;
|
|
139
|
+
/**
|
|
140
|
+
* The maximum amount of memory, in bytes, that can be allocated for the pipeline configuration, with all included YAML configuration files.
|
|
141
|
+
*/
|
|
142
|
+
readonly ciMaxTotalYamlSizeBytes: pulumi.Output<number>;
|
|
101
143
|
/**
|
|
102
144
|
* Custom hostname (for private commit emails).
|
|
103
145
|
*/
|
|
104
146
|
readonly commitEmailHostname: pulumi.Output<string>;
|
|
147
|
+
/**
|
|
148
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Cloud importer. Introduced in GitLab 16.11.
|
|
149
|
+
*/
|
|
150
|
+
readonly concurrentBitbucketImportJobsLimit: pulumi.Output<number>;
|
|
151
|
+
/**
|
|
152
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Server importer. Introduced in GitLab 16.11.
|
|
153
|
+
*/
|
|
154
|
+
readonly concurrentBitbucketServerImportJobsLimit: pulumi.Output<number>;
|
|
155
|
+
/**
|
|
156
|
+
* Maximum number of simultaneous import jobs for the GitHub importer. Introduced in GitLab 16.11.
|
|
157
|
+
*/
|
|
158
|
+
readonly concurrentGithubImportJobsLimit: pulumi.Output<number>;
|
|
105
159
|
/**
|
|
106
160
|
* Enable cleanup policies for all projects.
|
|
107
161
|
*/
|
|
@@ -130,6 +184,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
130
184
|
* Enable automatic deactivation of dormant users.
|
|
131
185
|
*/
|
|
132
186
|
readonly deactivateDormantUsers: pulumi.Output<boolean>;
|
|
187
|
+
/**
|
|
188
|
+
* Length of time (in days) after which a user is considered dormant. Introduced in GitLab 15.3.
|
|
189
|
+
*/
|
|
190
|
+
readonly deactivateDormantUsersPeriod: pulumi.Output<number>;
|
|
191
|
+
/**
|
|
192
|
+
* Default timeout for decompressing archived files, in seconds. Set to 0 to disable timeouts. Introduced in GitLab 16.4.
|
|
193
|
+
*/
|
|
194
|
+
readonly decompressArchiveFileTimeout: pulumi.Output<number>;
|
|
133
195
|
/**
|
|
134
196
|
* Set the default expiration time for each job’s artifacts.
|
|
135
197
|
*/
|
|
@@ -142,6 +204,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
142
204
|
* Determine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2.
|
|
143
205
|
*/
|
|
144
206
|
readonly defaultBranchProtection: pulumi.Output<number>;
|
|
207
|
+
/**
|
|
208
|
+
* The default*branch*protection*defaults attribute describes the default branch protection defaults. All parameters are optional.
|
|
209
|
+
*/
|
|
210
|
+
readonly defaultBranchProtectionDefaults: pulumi.Output<outputs.ApplicationSettingsDefaultBranchProtectionDefaults>;
|
|
145
211
|
/**
|
|
146
212
|
* Default CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set).
|
|
147
213
|
*/
|
|
@@ -150,6 +216,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
150
216
|
* What visibility level new groups receive. Can take private, internal and public as a parameter.
|
|
151
217
|
*/
|
|
152
218
|
readonly defaultGroupVisibility: pulumi.Output<string>;
|
|
219
|
+
/**
|
|
220
|
+
* Default preferred language for users who are not logged in.
|
|
221
|
+
*/
|
|
222
|
+
readonly defaultPreferredLanguage: pulumi.Output<string>;
|
|
153
223
|
/**
|
|
154
224
|
* Default project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers).
|
|
155
225
|
*/
|
|
@@ -166,14 +236,30 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
166
236
|
* What visibility level new snippets receive. Can take private, internal and public as a parameter.
|
|
167
237
|
*/
|
|
168
238
|
readonly defaultSnippetVisibility: pulumi.Output<string>;
|
|
239
|
+
/**
|
|
240
|
+
* Default syntax highlighting theme for users who are new or not signed in. See IDs of available themes (https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/themes.rb#L16)
|
|
241
|
+
*/
|
|
242
|
+
readonly defaultSyntaxHighlightingTheme: pulumi.Output<number>;
|
|
169
243
|
/**
|
|
170
244
|
* Enable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive*projects*deletion).
|
|
171
245
|
*/
|
|
172
246
|
readonly deleteInactiveProjects: pulumi.Output<boolean>;
|
|
247
|
+
/**
|
|
248
|
+
* Specifies whether users who have not confirmed their email should be deleted. When set to true, unconfirmed users are deleted after unconfirmed*users*delete*after*days days. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
249
|
+
*/
|
|
250
|
+
readonly deleteUnconfirmedUsers: pulumi.Output<boolean>;
|
|
173
251
|
/**
|
|
174
252
|
* The number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90.
|
|
175
253
|
*/
|
|
176
254
|
readonly deletionAdjournedPeriod: pulumi.Output<number>;
|
|
255
|
+
/**
|
|
256
|
+
* (If enabled, requires diagramsnet_url) Enable Diagrams.net integration.
|
|
257
|
+
*/
|
|
258
|
+
readonly diagramsnetEnabled: pulumi.Output<boolean>;
|
|
259
|
+
/**
|
|
260
|
+
* The Diagrams.net instance URL for integration.
|
|
261
|
+
*/
|
|
262
|
+
readonly diagramsnetUrl: pulumi.Output<string>;
|
|
177
263
|
/**
|
|
178
264
|
* Maximum files in a diff.
|
|
179
265
|
*/
|
|
@@ -186,10 +272,18 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
186
272
|
* Maximum diff patch size, in bytes.
|
|
187
273
|
*/
|
|
188
274
|
readonly diffMaxPatchBytes: pulumi.Output<number>;
|
|
275
|
+
/**
|
|
276
|
+
* Stops administrators from connecting their GitLab accounts to non-trusted OAuth 2.0 applications that have the api, read*api, read*repository, write*repository, read*registry, write_registry, or sudo scopes. Introduced in GitLab 15.6.
|
|
277
|
+
*/
|
|
278
|
+
readonly disableAdminOauthScopes: pulumi.Output<boolean>;
|
|
189
279
|
/**
|
|
190
280
|
* Disable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7).
|
|
191
281
|
*/
|
|
192
282
|
readonly disableFeedToken: pulumi.Output<boolean>;
|
|
283
|
+
/**
|
|
284
|
+
* Disable personal access tokens. Introduced in GitLab 15.7. Self-managed, Premium and Ultimate only. There is no method available to enable a personal access token that’s been disabled through the API. This is a known issue.
|
|
285
|
+
*/
|
|
286
|
+
readonly disablePersonalAccessTokens: pulumi.Output<boolean>;
|
|
193
287
|
/**
|
|
194
288
|
* Disabled OAuth sign-in sources.
|
|
195
289
|
*/
|
|
@@ -210,10 +304,18 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
210
304
|
* Users with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com.
|
|
211
305
|
*/
|
|
212
306
|
readonly domainDenylists: pulumi.Output<string[]>;
|
|
307
|
+
/**
|
|
308
|
+
* Maximum downstream pipeline trigger rate. Introduced in GitLab 16.10.
|
|
309
|
+
*/
|
|
310
|
+
readonly downstreamPipelineTriggerLimitPerProjectUserSha: pulumi.Output<number>;
|
|
213
311
|
/**
|
|
214
312
|
* The minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys.
|
|
215
313
|
*/
|
|
216
314
|
readonly dsaKeyRestriction: pulumi.Output<number>;
|
|
315
|
+
/**
|
|
316
|
+
* Indicates whether GitLab Duo features are enabled for this instance. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
317
|
+
*/
|
|
318
|
+
readonly duoFeaturesEnabled: pulumi.Output<boolean>;
|
|
217
319
|
/**
|
|
218
320
|
* The minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys.
|
|
219
321
|
*/
|
|
@@ -1034,6 +1136,10 @@ export interface ApplicationSettingsState {
|
|
|
1034
1136
|
* (If enabled, requires: akismet*api*key) Enable or disable Akismet spam protection.
|
|
1035
1137
|
*/
|
|
1036
1138
|
akismetEnabled?: pulumi.Input<boolean>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Set to true to allow users to delete their accounts. Premium and Ultimate only.
|
|
1141
|
+
*/
|
|
1142
|
+
allowAccountDeletion?: pulumi.Input<boolean>;
|
|
1037
1143
|
/**
|
|
1038
1144
|
* Set to true to allow group owners to manage LDAP.
|
|
1039
1145
|
*/
|
|
@@ -1046,10 +1152,22 @@ export interface ApplicationSettingsState {
|
|
|
1046
1152
|
* Allow requests to the local network from web hooks and services.
|
|
1047
1153
|
*/
|
|
1048
1154
|
allowLocalRequestsFromWebHooksAndServices?: pulumi.Input<boolean>;
|
|
1155
|
+
/**
|
|
1156
|
+
* Indicates whether users assigned up to the Guest role can create groups and personal projects.
|
|
1157
|
+
*/
|
|
1158
|
+
allowProjectCreationForGuestAndBelow?: pulumi.Input<boolean>;
|
|
1159
|
+
/**
|
|
1160
|
+
* Allow using a registration token to create a runner.
|
|
1161
|
+
*/
|
|
1162
|
+
allowRunnerRegistrationToken?: pulumi.Input<boolean>;
|
|
1049
1163
|
/**
|
|
1050
1164
|
* Set the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years.
|
|
1051
1165
|
*/
|
|
1052
1166
|
archiveBuildsInHumanReadable?: pulumi.Input<string>;
|
|
1167
|
+
/**
|
|
1168
|
+
* Maximum limit of AsciiDoc include directives being processed in any one document. Maximum: 64.
|
|
1169
|
+
*/
|
|
1170
|
+
asciidocMaxIncludes?: pulumi.Input<number>;
|
|
1053
1171
|
/**
|
|
1054
1172
|
* Assets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes.
|
|
1055
1173
|
*/
|
|
@@ -1070,6 +1188,10 @@ export interface ApplicationSettingsState {
|
|
|
1070
1188
|
* By default, we write to the authorizedKeys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand.
|
|
1071
1189
|
*/
|
|
1072
1190
|
authorizedKeysEnabled?: pulumi.Input<boolean>;
|
|
1191
|
+
/**
|
|
1192
|
+
* When enabled, users will get automatically banned from the application when they download more than the maximum number of unique projects in the time period specified by max*number*of*repository*downloads and max*number*of*repository*downloads*within*time_period respectively. Introduced in GitLab 15.4. Self-managed, Ultimate only.
|
|
1193
|
+
*/
|
|
1194
|
+
autoBanUserOnExcessiveProjectsDownload?: pulumi.Input<boolean>;
|
|
1073
1195
|
/**
|
|
1074
1196
|
* Specify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages.
|
|
1075
1197
|
*/
|
|
@@ -1082,6 +1204,18 @@ export interface ApplicationSettingsState {
|
|
|
1082
1204
|
* Enabling this permits automatic allocation of purchased storage in a namespace.
|
|
1083
1205
|
*/
|
|
1084
1206
|
automaticPurchasedStorageAllocation?: pulumi.Input<boolean>;
|
|
1207
|
+
/**
|
|
1208
|
+
* Maximum simultaneous Direct Transfer batches to process.
|
|
1209
|
+
*/
|
|
1210
|
+
bulkImportConcurrentPipelineBatchLimit?: pulumi.Input<number>;
|
|
1211
|
+
/**
|
|
1212
|
+
* Enable migrating GitLab groups by direct transfer. Introduced in GitLab 15.8.
|
|
1213
|
+
*/
|
|
1214
|
+
bulkImportEnabled?: pulumi.Input<boolean>;
|
|
1215
|
+
/**
|
|
1216
|
+
* Maximum download file size when importing from source GitLab instances by direct transfer. Introduced in GitLab 16.3.
|
|
1217
|
+
*/
|
|
1218
|
+
bulkImportMaxDownloadFileSize?: pulumi.Input<number>;
|
|
1085
1219
|
/**
|
|
1086
1220
|
* Indicates whether users can create top-level groups. Introduced in GitLab 15.5.
|
|
1087
1221
|
*/
|
|
@@ -1090,10 +1224,30 @@ export interface ApplicationSettingsState {
|
|
|
1090
1224
|
* Enabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public.
|
|
1091
1225
|
*/
|
|
1092
1226
|
checkNamespacePlan?: pulumi.Input<boolean>;
|
|
1227
|
+
/**
|
|
1228
|
+
* The maximum number of includes per pipeline.
|
|
1229
|
+
*/
|
|
1230
|
+
ciMaxIncludes?: pulumi.Input<number>;
|
|
1231
|
+
/**
|
|
1232
|
+
* The maximum amount of memory, in bytes, that can be allocated for the pipeline configuration, with all included YAML configuration files.
|
|
1233
|
+
*/
|
|
1234
|
+
ciMaxTotalYamlSizeBytes?: pulumi.Input<number>;
|
|
1093
1235
|
/**
|
|
1094
1236
|
* Custom hostname (for private commit emails).
|
|
1095
1237
|
*/
|
|
1096
1238
|
commitEmailHostname?: pulumi.Input<string>;
|
|
1239
|
+
/**
|
|
1240
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Cloud importer. Introduced in GitLab 16.11.
|
|
1241
|
+
*/
|
|
1242
|
+
concurrentBitbucketImportJobsLimit?: pulumi.Input<number>;
|
|
1243
|
+
/**
|
|
1244
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Server importer. Introduced in GitLab 16.11.
|
|
1245
|
+
*/
|
|
1246
|
+
concurrentBitbucketServerImportJobsLimit?: pulumi.Input<number>;
|
|
1247
|
+
/**
|
|
1248
|
+
* Maximum number of simultaneous import jobs for the GitHub importer. Introduced in GitLab 16.11.
|
|
1249
|
+
*/
|
|
1250
|
+
concurrentGithubImportJobsLimit?: pulumi.Input<number>;
|
|
1097
1251
|
/**
|
|
1098
1252
|
* Enable cleanup policies for all projects.
|
|
1099
1253
|
*/
|
|
@@ -1122,6 +1276,14 @@ export interface ApplicationSettingsState {
|
|
|
1122
1276
|
* Enable automatic deactivation of dormant users.
|
|
1123
1277
|
*/
|
|
1124
1278
|
deactivateDormantUsers?: pulumi.Input<boolean>;
|
|
1279
|
+
/**
|
|
1280
|
+
* Length of time (in days) after which a user is considered dormant. Introduced in GitLab 15.3.
|
|
1281
|
+
*/
|
|
1282
|
+
deactivateDormantUsersPeriod?: pulumi.Input<number>;
|
|
1283
|
+
/**
|
|
1284
|
+
* Default timeout for decompressing archived files, in seconds. Set to 0 to disable timeouts. Introduced in GitLab 16.4.
|
|
1285
|
+
*/
|
|
1286
|
+
decompressArchiveFileTimeout?: pulumi.Input<number>;
|
|
1125
1287
|
/**
|
|
1126
1288
|
* Set the default expiration time for each job’s artifacts.
|
|
1127
1289
|
*/
|
|
@@ -1134,6 +1296,10 @@ export interface ApplicationSettingsState {
|
|
|
1134
1296
|
* Determine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2.
|
|
1135
1297
|
*/
|
|
1136
1298
|
defaultBranchProtection?: pulumi.Input<number>;
|
|
1299
|
+
/**
|
|
1300
|
+
* The default*branch*protection*defaults attribute describes the default branch protection defaults. All parameters are optional.
|
|
1301
|
+
*/
|
|
1302
|
+
defaultBranchProtectionDefaults?: pulumi.Input<inputs.ApplicationSettingsDefaultBranchProtectionDefaults>;
|
|
1137
1303
|
/**
|
|
1138
1304
|
* Default CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set).
|
|
1139
1305
|
*/
|
|
@@ -1142,6 +1308,10 @@ export interface ApplicationSettingsState {
|
|
|
1142
1308
|
* What visibility level new groups receive. Can take private, internal and public as a parameter.
|
|
1143
1309
|
*/
|
|
1144
1310
|
defaultGroupVisibility?: pulumi.Input<string>;
|
|
1311
|
+
/**
|
|
1312
|
+
* Default preferred language for users who are not logged in.
|
|
1313
|
+
*/
|
|
1314
|
+
defaultPreferredLanguage?: pulumi.Input<string>;
|
|
1145
1315
|
/**
|
|
1146
1316
|
* Default project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers).
|
|
1147
1317
|
*/
|
|
@@ -1158,14 +1328,30 @@ export interface ApplicationSettingsState {
|
|
|
1158
1328
|
* What visibility level new snippets receive. Can take private, internal and public as a parameter.
|
|
1159
1329
|
*/
|
|
1160
1330
|
defaultSnippetVisibility?: pulumi.Input<string>;
|
|
1331
|
+
/**
|
|
1332
|
+
* Default syntax highlighting theme for users who are new or not signed in. See IDs of available themes (https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/themes.rb#L16)
|
|
1333
|
+
*/
|
|
1334
|
+
defaultSyntaxHighlightingTheme?: pulumi.Input<number>;
|
|
1161
1335
|
/**
|
|
1162
1336
|
* Enable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive*projects*deletion).
|
|
1163
1337
|
*/
|
|
1164
1338
|
deleteInactiveProjects?: pulumi.Input<boolean>;
|
|
1339
|
+
/**
|
|
1340
|
+
* Specifies whether users who have not confirmed their email should be deleted. When set to true, unconfirmed users are deleted after unconfirmed*users*delete*after*days days. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
1341
|
+
*/
|
|
1342
|
+
deleteUnconfirmedUsers?: pulumi.Input<boolean>;
|
|
1165
1343
|
/**
|
|
1166
1344
|
* The number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90.
|
|
1167
1345
|
*/
|
|
1168
1346
|
deletionAdjournedPeriod?: pulumi.Input<number>;
|
|
1347
|
+
/**
|
|
1348
|
+
* (If enabled, requires diagramsnet_url) Enable Diagrams.net integration.
|
|
1349
|
+
*/
|
|
1350
|
+
diagramsnetEnabled?: pulumi.Input<boolean>;
|
|
1351
|
+
/**
|
|
1352
|
+
* The Diagrams.net instance URL for integration.
|
|
1353
|
+
*/
|
|
1354
|
+
diagramsnetUrl?: pulumi.Input<string>;
|
|
1169
1355
|
/**
|
|
1170
1356
|
* Maximum files in a diff.
|
|
1171
1357
|
*/
|
|
@@ -1178,10 +1364,18 @@ export interface ApplicationSettingsState {
|
|
|
1178
1364
|
* Maximum diff patch size, in bytes.
|
|
1179
1365
|
*/
|
|
1180
1366
|
diffMaxPatchBytes?: pulumi.Input<number>;
|
|
1367
|
+
/**
|
|
1368
|
+
* Stops administrators from connecting their GitLab accounts to non-trusted OAuth 2.0 applications that have the api, read*api, read*repository, write*repository, read*registry, write_registry, or sudo scopes. Introduced in GitLab 15.6.
|
|
1369
|
+
*/
|
|
1370
|
+
disableAdminOauthScopes?: pulumi.Input<boolean>;
|
|
1181
1371
|
/**
|
|
1182
1372
|
* Disable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7).
|
|
1183
1373
|
*/
|
|
1184
1374
|
disableFeedToken?: pulumi.Input<boolean>;
|
|
1375
|
+
/**
|
|
1376
|
+
* Disable personal access tokens. Introduced in GitLab 15.7. Self-managed, Premium and Ultimate only. There is no method available to enable a personal access token that’s been disabled through the API. This is a known issue.
|
|
1377
|
+
*/
|
|
1378
|
+
disablePersonalAccessTokens?: pulumi.Input<boolean>;
|
|
1185
1379
|
/**
|
|
1186
1380
|
* Disabled OAuth sign-in sources.
|
|
1187
1381
|
*/
|
|
@@ -1202,10 +1396,18 @@ export interface ApplicationSettingsState {
|
|
|
1202
1396
|
* Users with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com.
|
|
1203
1397
|
*/
|
|
1204
1398
|
domainDenylists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1399
|
+
/**
|
|
1400
|
+
* Maximum downstream pipeline trigger rate. Introduced in GitLab 16.10.
|
|
1401
|
+
*/
|
|
1402
|
+
downstreamPipelineTriggerLimitPerProjectUserSha?: pulumi.Input<number>;
|
|
1205
1403
|
/**
|
|
1206
1404
|
* The minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys.
|
|
1207
1405
|
*/
|
|
1208
1406
|
dsaKeyRestriction?: pulumi.Input<number>;
|
|
1407
|
+
/**
|
|
1408
|
+
* Indicates whether GitLab Duo features are enabled for this instance. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
1409
|
+
*/
|
|
1410
|
+
duoFeaturesEnabled?: pulumi.Input<boolean>;
|
|
1209
1411
|
/**
|
|
1210
1412
|
* The minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys.
|
|
1211
1413
|
*/
|
|
@@ -2018,6 +2220,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2018
2220
|
* (If enabled, requires: akismet*api*key) Enable or disable Akismet spam protection.
|
|
2019
2221
|
*/
|
|
2020
2222
|
akismetEnabled?: pulumi.Input<boolean>;
|
|
2223
|
+
/**
|
|
2224
|
+
* Set to true to allow users to delete their accounts. Premium and Ultimate only.
|
|
2225
|
+
*/
|
|
2226
|
+
allowAccountDeletion?: pulumi.Input<boolean>;
|
|
2021
2227
|
/**
|
|
2022
2228
|
* Set to true to allow group owners to manage LDAP.
|
|
2023
2229
|
*/
|
|
@@ -2030,10 +2236,22 @@ export interface ApplicationSettingsArgs {
|
|
|
2030
2236
|
* Allow requests to the local network from web hooks and services.
|
|
2031
2237
|
*/
|
|
2032
2238
|
allowLocalRequestsFromWebHooksAndServices?: pulumi.Input<boolean>;
|
|
2239
|
+
/**
|
|
2240
|
+
* Indicates whether users assigned up to the Guest role can create groups and personal projects.
|
|
2241
|
+
*/
|
|
2242
|
+
allowProjectCreationForGuestAndBelow?: pulumi.Input<boolean>;
|
|
2243
|
+
/**
|
|
2244
|
+
* Allow using a registration token to create a runner.
|
|
2245
|
+
*/
|
|
2246
|
+
allowRunnerRegistrationToken?: pulumi.Input<boolean>;
|
|
2033
2247
|
/**
|
|
2034
2248
|
* Set the duration for which the jobs are considered as old and expired. After that time passes, the jobs are archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years.
|
|
2035
2249
|
*/
|
|
2036
2250
|
archiveBuildsInHumanReadable?: pulumi.Input<string>;
|
|
2251
|
+
/**
|
|
2252
|
+
* Maximum limit of AsciiDoc include directives being processed in any one document. Maximum: 64.
|
|
2253
|
+
*/
|
|
2254
|
+
asciidocMaxIncludes?: pulumi.Input<number>;
|
|
2037
2255
|
/**
|
|
2038
2256
|
* Assets that match these domains are not proxied. Wildcards allowed. Your GitLab installation URL is automatically allowlisted. GitLab restart is required to apply changes.
|
|
2039
2257
|
*/
|
|
@@ -2054,6 +2272,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2054
2272
|
* By default, we write to the authorizedKeys file to support Git over SSH without additional configuration. GitLab can be optimized to authenticate SSH keys via the database file. Only disable this if you have configured your OpenSSH server to use the AuthorizedKeysCommand.
|
|
2055
2273
|
*/
|
|
2056
2274
|
authorizedKeysEnabled?: pulumi.Input<boolean>;
|
|
2275
|
+
/**
|
|
2276
|
+
* When enabled, users will get automatically banned from the application when they download more than the maximum number of unique projects in the time period specified by max*number*of*repository*downloads and max*number*of*repository*downloads*within*time_period respectively. Introduced in GitLab 15.4. Self-managed, Ultimate only.
|
|
2277
|
+
*/
|
|
2278
|
+
autoBanUserOnExcessiveProjectsDownload?: pulumi.Input<boolean>;
|
|
2057
2279
|
/**
|
|
2058
2280
|
* Specify a domain to use by default for every project’s Auto Review Apps and Auto Deploy stages.
|
|
2059
2281
|
*/
|
|
@@ -2066,6 +2288,18 @@ export interface ApplicationSettingsArgs {
|
|
|
2066
2288
|
* Enabling this permits automatic allocation of purchased storage in a namespace.
|
|
2067
2289
|
*/
|
|
2068
2290
|
automaticPurchasedStorageAllocation?: pulumi.Input<boolean>;
|
|
2291
|
+
/**
|
|
2292
|
+
* Maximum simultaneous Direct Transfer batches to process.
|
|
2293
|
+
*/
|
|
2294
|
+
bulkImportConcurrentPipelineBatchLimit?: pulumi.Input<number>;
|
|
2295
|
+
/**
|
|
2296
|
+
* Enable migrating GitLab groups by direct transfer. Introduced in GitLab 15.8.
|
|
2297
|
+
*/
|
|
2298
|
+
bulkImportEnabled?: pulumi.Input<boolean>;
|
|
2299
|
+
/**
|
|
2300
|
+
* Maximum download file size when importing from source GitLab instances by direct transfer. Introduced in GitLab 16.3.
|
|
2301
|
+
*/
|
|
2302
|
+
bulkImportMaxDownloadFileSize?: pulumi.Input<number>;
|
|
2069
2303
|
/**
|
|
2070
2304
|
* Indicates whether users can create top-level groups. Introduced in GitLab 15.5.
|
|
2071
2305
|
*/
|
|
@@ -2074,10 +2308,30 @@ export interface ApplicationSettingsArgs {
|
|
|
2074
2308
|
* Enabling this makes only licensed EE features available to projects if the project namespace’s plan includes the feature or if the project is public.
|
|
2075
2309
|
*/
|
|
2076
2310
|
checkNamespacePlan?: pulumi.Input<boolean>;
|
|
2311
|
+
/**
|
|
2312
|
+
* The maximum number of includes per pipeline.
|
|
2313
|
+
*/
|
|
2314
|
+
ciMaxIncludes?: pulumi.Input<number>;
|
|
2315
|
+
/**
|
|
2316
|
+
* The maximum amount of memory, in bytes, that can be allocated for the pipeline configuration, with all included YAML configuration files.
|
|
2317
|
+
*/
|
|
2318
|
+
ciMaxTotalYamlSizeBytes?: pulumi.Input<number>;
|
|
2077
2319
|
/**
|
|
2078
2320
|
* Custom hostname (for private commit emails).
|
|
2079
2321
|
*/
|
|
2080
2322
|
commitEmailHostname?: pulumi.Input<string>;
|
|
2323
|
+
/**
|
|
2324
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Cloud importer. Introduced in GitLab 16.11.
|
|
2325
|
+
*/
|
|
2326
|
+
concurrentBitbucketImportJobsLimit?: pulumi.Input<number>;
|
|
2327
|
+
/**
|
|
2328
|
+
* Maximum number of simultaneous import jobs for the Bitbucket Server importer. Introduced in GitLab 16.11.
|
|
2329
|
+
*/
|
|
2330
|
+
concurrentBitbucketServerImportJobsLimit?: pulumi.Input<number>;
|
|
2331
|
+
/**
|
|
2332
|
+
* Maximum number of simultaneous import jobs for the GitHub importer. Introduced in GitLab 16.11.
|
|
2333
|
+
*/
|
|
2334
|
+
concurrentGithubImportJobsLimit?: pulumi.Input<number>;
|
|
2081
2335
|
/**
|
|
2082
2336
|
* Enable cleanup policies for all projects.
|
|
2083
2337
|
*/
|
|
@@ -2106,6 +2360,14 @@ export interface ApplicationSettingsArgs {
|
|
|
2106
2360
|
* Enable automatic deactivation of dormant users.
|
|
2107
2361
|
*/
|
|
2108
2362
|
deactivateDormantUsers?: pulumi.Input<boolean>;
|
|
2363
|
+
/**
|
|
2364
|
+
* Length of time (in days) after which a user is considered dormant. Introduced in GitLab 15.3.
|
|
2365
|
+
*/
|
|
2366
|
+
deactivateDormantUsersPeriod?: pulumi.Input<number>;
|
|
2367
|
+
/**
|
|
2368
|
+
* Default timeout for decompressing archived files, in seconds. Set to 0 to disable timeouts. Introduced in GitLab 16.4.
|
|
2369
|
+
*/
|
|
2370
|
+
decompressArchiveFileTimeout?: pulumi.Input<number>;
|
|
2109
2371
|
/**
|
|
2110
2372
|
* Set the default expiration time for each job’s artifacts.
|
|
2111
2373
|
*/
|
|
@@ -2118,6 +2380,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2118
2380
|
* Determine if developers can push to the default branch. Can take: 0 (not protected, both users with the Developer role or Maintainer role can push new commits and force push), 1 (partially protected, users with the Developer role or Maintainer role can push new commits, but cannot force push) or 2 (fully protected, users with the Developer or Maintainer role cannot push new commits, but users with the Developer or Maintainer role can; no one can force push) as a parameter. Default is 2.
|
|
2119
2381
|
*/
|
|
2120
2382
|
defaultBranchProtection?: pulumi.Input<number>;
|
|
2383
|
+
/**
|
|
2384
|
+
* The default*branch*protection*defaults attribute describes the default branch protection defaults. All parameters are optional.
|
|
2385
|
+
*/
|
|
2386
|
+
defaultBranchProtectionDefaults?: pulumi.Input<inputs.ApplicationSettingsDefaultBranchProtectionDefaults>;
|
|
2121
2387
|
/**
|
|
2122
2388
|
* Default CI/CD configuration file and path for new projects (.gitlab-ci.yml if not set).
|
|
2123
2389
|
*/
|
|
@@ -2126,6 +2392,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2126
2392
|
* What visibility level new groups receive. Can take private, internal and public as a parameter.
|
|
2127
2393
|
*/
|
|
2128
2394
|
defaultGroupVisibility?: pulumi.Input<string>;
|
|
2395
|
+
/**
|
|
2396
|
+
* Default preferred language for users who are not logged in.
|
|
2397
|
+
*/
|
|
2398
|
+
defaultPreferredLanguage?: pulumi.Input<string>;
|
|
2129
2399
|
/**
|
|
2130
2400
|
* Default project creation protection. Can take: 0 (No one), 1 (Maintainers) or 2 (Developers + Maintainers).
|
|
2131
2401
|
*/
|
|
@@ -2142,14 +2412,30 @@ export interface ApplicationSettingsArgs {
|
|
|
2142
2412
|
* What visibility level new snippets receive. Can take private, internal and public as a parameter.
|
|
2143
2413
|
*/
|
|
2144
2414
|
defaultSnippetVisibility?: pulumi.Input<string>;
|
|
2415
|
+
/**
|
|
2416
|
+
* Default syntax highlighting theme for users who are new or not signed in. See IDs of available themes (https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/themes.rb#L16)
|
|
2417
|
+
*/
|
|
2418
|
+
defaultSyntaxHighlightingTheme?: pulumi.Input<number>;
|
|
2145
2419
|
/**
|
|
2146
2420
|
* Enable inactive project deletion feature. Introduced in GitLab 14.10. Became operational in GitLab 15.0 (with feature flag inactive*projects*deletion).
|
|
2147
2421
|
*/
|
|
2148
2422
|
deleteInactiveProjects?: pulumi.Input<boolean>;
|
|
2423
|
+
/**
|
|
2424
|
+
* Specifies whether users who have not confirmed their email should be deleted. When set to true, unconfirmed users are deleted after unconfirmed*users*delete*after*days days. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
2425
|
+
*/
|
|
2426
|
+
deleteUnconfirmedUsers?: pulumi.Input<boolean>;
|
|
2149
2427
|
/**
|
|
2150
2428
|
* The number of days to wait before deleting a project or group that is marked for deletion. Value must be between 1 and 90.
|
|
2151
2429
|
*/
|
|
2152
2430
|
deletionAdjournedPeriod?: pulumi.Input<number>;
|
|
2431
|
+
/**
|
|
2432
|
+
* (If enabled, requires diagramsnet_url) Enable Diagrams.net integration.
|
|
2433
|
+
*/
|
|
2434
|
+
diagramsnetEnabled?: pulumi.Input<boolean>;
|
|
2435
|
+
/**
|
|
2436
|
+
* The Diagrams.net instance URL for integration.
|
|
2437
|
+
*/
|
|
2438
|
+
diagramsnetUrl?: pulumi.Input<string>;
|
|
2153
2439
|
/**
|
|
2154
2440
|
* Maximum files in a diff.
|
|
2155
2441
|
*/
|
|
@@ -2162,10 +2448,18 @@ export interface ApplicationSettingsArgs {
|
|
|
2162
2448
|
* Maximum diff patch size, in bytes.
|
|
2163
2449
|
*/
|
|
2164
2450
|
diffMaxPatchBytes?: pulumi.Input<number>;
|
|
2451
|
+
/**
|
|
2452
|
+
* Stops administrators from connecting their GitLab accounts to non-trusted OAuth 2.0 applications that have the api, read*api, read*repository, write*repository, read*registry, write_registry, or sudo scopes. Introduced in GitLab 15.6.
|
|
2453
|
+
*/
|
|
2454
|
+
disableAdminOauthScopes?: pulumi.Input<boolean>;
|
|
2165
2455
|
/**
|
|
2166
2456
|
* Disable display of RSS/Atom and calendar feed tokens (introduced in GitLab 13.7).
|
|
2167
2457
|
*/
|
|
2168
2458
|
disableFeedToken?: pulumi.Input<boolean>;
|
|
2459
|
+
/**
|
|
2460
|
+
* Disable personal access tokens. Introduced in GitLab 15.7. Self-managed, Premium and Ultimate only. There is no method available to enable a personal access token that’s been disabled through the API. This is a known issue.
|
|
2461
|
+
*/
|
|
2462
|
+
disablePersonalAccessTokens?: pulumi.Input<boolean>;
|
|
2169
2463
|
/**
|
|
2170
2464
|
* Disabled OAuth sign-in sources.
|
|
2171
2465
|
*/
|
|
@@ -2186,10 +2480,18 @@ export interface ApplicationSettingsArgs {
|
|
|
2186
2480
|
* Users with email addresses that match these domains cannot sign up. Wildcards allowed. Use separate lines for multiple entries. Ex: domain.com, *.domain.com.
|
|
2187
2481
|
*/
|
|
2188
2482
|
domainDenylists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2483
|
+
/**
|
|
2484
|
+
* Maximum downstream pipeline trigger rate. Introduced in GitLab 16.10.
|
|
2485
|
+
*/
|
|
2486
|
+
downstreamPipelineTriggerLimitPerProjectUserSha?: pulumi.Input<number>;
|
|
2189
2487
|
/**
|
|
2190
2488
|
* The minimum allowed bit length of an uploaded DSA key. 0 means no restriction. -1 disables DSA keys.
|
|
2191
2489
|
*/
|
|
2192
2490
|
dsaKeyRestriction?: pulumi.Input<number>;
|
|
2491
|
+
/**
|
|
2492
|
+
* Indicates whether GitLab Duo features are enabled for this instance. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
2493
|
+
*/
|
|
2494
|
+
duoFeaturesEnabled?: pulumi.Input<boolean>;
|
|
2193
2495
|
/**
|
|
2194
2496
|
* The minimum allowed curve size (in bits) of an uploaded ECDSA key. 0 means no restriction. -1 disables ECDSA keys.
|
|
2195
2497
|
*/
|