@pulumi/gitlab 8.5.0-alpha.1729186816 → 8.5.0-alpha.1729277407
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 +538 -6
- package/applicationSettings.js +91 -1
- package/applicationSettings.js.map +1 -1
- package/config/vars.d.ts +6 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/getGroup.d.ts +4 -0
- package/getGroup.js.map +1 -1
- package/getGroupProvisionedUsers.d.ts +126 -0
- package/getGroupProvisionedUsers.js +46 -0
- package/getGroupProvisionedUsers.js.map +1 -0
- package/getGroupServiceAccount.d.ts +77 -0
- package/getGroupServiceAccount.js +38 -0
- package/getGroupServiceAccount.js.map +1 -0
- package/getProject.d.ts +12 -0
- package/getProject.js.map +1 -1
- package/getProjectMergeRequest.d.ts +125 -0
- package/getProjectMergeRequest.js +68 -0
- package/getProjectMergeRequest.js.map +1 -0
- package/group.d.ts +31 -0
- package/group.js +21 -0
- package/group.js.map +1 -1
- package/groupHook.d.ts +41 -41
- package/groupServiceAccount.d.ts +115 -0
- package/groupServiceAccount.js +93 -0
- package/groupServiceAccount.js.map +1 -0
- package/groupServiceAccountAccessToken.d.ts +174 -0
- package/groupServiceAccountAccessToken.js +122 -0
- package/groupServiceAccountAccessToken.js.map +1 -0
- package/index.d.ts +15 -0
- package/index.js +24 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/personalAccessToken.d.ts +19 -3
- package/personalAccessToken.js +4 -0
- package/personalAccessToken.js.map +1 -1
- package/project.d.ts +36 -0
- package/project.js +6 -0
- package/project.js.map +1 -1
- package/projectHook.d.ts +34 -34
- package/provider.d.ts +6 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +216 -2
- package/types/output.d.ts +205 -3
package/applicationSettings.d.ts
CHANGED
|
@@ -388,6 +388,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
388
388
|
* Maximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations.
|
|
389
389
|
*/
|
|
390
390
|
readonly elasticsearchMaxBulkSizeMb: pulumi.Output<number>;
|
|
391
|
+
/**
|
|
392
|
+
* Maximum concurrency of Elasticsearch code indexing background jobs. This only applies to repository indexing operations. Premium and Ultimate only.
|
|
393
|
+
*/
|
|
394
|
+
readonly elasticsearchMaxCodeIndexingConcurrency: pulumi.Output<number>;
|
|
391
395
|
/**
|
|
392
396
|
* The namespaces to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
393
397
|
*/
|
|
@@ -400,6 +404,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
400
404
|
* The projects to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
401
405
|
*/
|
|
402
406
|
readonly elasticsearchProjectIds: pulumi.Output<number[]>;
|
|
407
|
+
/**
|
|
408
|
+
* Enable automatic requeuing of indexing workers. This improves non-code indexing throughput by enqueuing Sidekiq jobs until all documents are processed. Premium and Ultimate only.
|
|
409
|
+
*/
|
|
410
|
+
readonly elasticsearchRequeueWorkers: pulumi.Output<boolean>;
|
|
403
411
|
/**
|
|
404
412
|
* Enable Elasticsearch search.
|
|
405
413
|
*/
|
|
@@ -412,6 +420,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
412
420
|
* The username of your Elasticsearch instance.
|
|
413
421
|
*/
|
|
414
422
|
readonly elasticsearchUsername: pulumi.Output<string>;
|
|
423
|
+
/**
|
|
424
|
+
* Number of indexing worker shards. This improves non-code indexing throughput by enqueuing more parallel Sidekiq jobs. Premium and Ultimate only.
|
|
425
|
+
*/
|
|
426
|
+
readonly elasticsearchWorkerNumberOfShards: pulumi.Output<number>;
|
|
415
427
|
/**
|
|
416
428
|
* Additional text added to the bottom of every email for legal/auditing/compliance reasons.
|
|
417
429
|
*/
|
|
@@ -420,6 +432,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
420
432
|
* Some email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead.
|
|
421
433
|
*/
|
|
422
434
|
readonly emailAuthorInBody: pulumi.Output<boolean>;
|
|
435
|
+
/**
|
|
436
|
+
* Specifies whether users must confirm their email before sign in. Possible values are off, soft, and hard.
|
|
437
|
+
*/
|
|
438
|
+
readonly emailConfirmationSetting: pulumi.Output<string>;
|
|
439
|
+
/**
|
|
440
|
+
* Show the external redirect page that warns you about user-generated content in GitLab Pages.
|
|
441
|
+
*/
|
|
442
|
+
readonly enableArtifactExternalRedirectWarningPage: pulumi.Output<boolean>;
|
|
423
443
|
/**
|
|
424
444
|
* Enabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols.
|
|
425
445
|
*/
|
|
@@ -472,6 +492,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
472
492
|
* URL to use for pipeline validation requests.
|
|
473
493
|
*/
|
|
474
494
|
readonly externalPipelineValidationServiceUrl: pulumi.Output<string>;
|
|
495
|
+
/**
|
|
496
|
+
* Time period in minutes after which the user is unlocked when maximum number of failed sign-in attempts reached.
|
|
497
|
+
*/
|
|
498
|
+
readonly failedLoginAttemptsUnlockPeriodInMinutes: pulumi.Output<number>;
|
|
475
499
|
/**
|
|
476
500
|
* The ID of a project to load custom file templates from.
|
|
477
501
|
*/
|
|
@@ -489,7 +513,11 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
489
513
|
*/
|
|
490
514
|
readonly geoStatusTimeout: pulumi.Output<number>;
|
|
491
515
|
/**
|
|
492
|
-
* List of
|
|
516
|
+
* List of user IDs that are emailed when the Git abuse rate limit is exceeded. Maximum: 100 user IDs. Introduced in GitLab 15.9. Self-managed, Ultimate only.
|
|
517
|
+
*/
|
|
518
|
+
readonly gitRateLimitUsersAlertlists: pulumi.Output<number[]>;
|
|
519
|
+
/**
|
|
520
|
+
* List of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2. Self-managed, Ultimate only.
|
|
493
521
|
*/
|
|
494
522
|
readonly gitRateLimitUsersAllowlists: pulumi.Output<string[]>;
|
|
495
523
|
/**
|
|
@@ -508,6 +536,30 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
508
536
|
* Medium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts.
|
|
509
537
|
*/
|
|
510
538
|
readonly gitalyTimeoutMedium: pulumi.Output<number>;
|
|
539
|
+
/**
|
|
540
|
+
* Indicates whether the instance was provisioned for GitLab Dedicated.
|
|
541
|
+
*/
|
|
542
|
+
readonly gitlabDedicatedInstance: pulumi.Output<boolean>;
|
|
543
|
+
/**
|
|
544
|
+
* Indicates whether the instance was provisioned with the GitLab Environment Toolkit for Service Ping reporting.
|
|
545
|
+
*/
|
|
546
|
+
readonly gitlabEnvironmentToolkitInstance: pulumi.Output<boolean>;
|
|
547
|
+
/**
|
|
548
|
+
* Maximum number of Git operations per minute a user can perform. Introduced in GitLab 16.2.
|
|
549
|
+
*/
|
|
550
|
+
readonly gitlabShellOperationLimit: pulumi.Output<number>;
|
|
551
|
+
/**
|
|
552
|
+
* Enable Gitpod integration.
|
|
553
|
+
*/
|
|
554
|
+
readonly gitpodEnabled: pulumi.Output<boolean>;
|
|
555
|
+
/**
|
|
556
|
+
* The Gitpod instance URL for integration.
|
|
557
|
+
*/
|
|
558
|
+
readonly gitpodUrl: pulumi.Output<string>;
|
|
559
|
+
/**
|
|
560
|
+
* Comma-separated list of IP addresses and CIDRs always allowed for inbound traffic. For example, 1.1.1.1, 2.2.2.0/24.
|
|
561
|
+
*/
|
|
562
|
+
readonly globallyAllowedIps: pulumi.Output<string>;
|
|
511
563
|
/**
|
|
512
564
|
* Enable Grafana.
|
|
513
565
|
*/
|
|
@@ -604,6 +656,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
604
656
|
* If delete*inactive*projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0.
|
|
605
657
|
*/
|
|
606
658
|
readonly inactiveProjectsSendWarningEmailAfterMonths: pulumi.Output<number>;
|
|
659
|
+
/**
|
|
660
|
+
* Whether or not optional metrics are enabled in Service Ping. Introduced in GitLab 16.10.
|
|
661
|
+
*/
|
|
662
|
+
readonly includeOptionalMetricsInServicePing: pulumi.Output<boolean>;
|
|
607
663
|
/**
|
|
608
664
|
* Enable Invisible CAPTCHA spam detection during sign-up.
|
|
609
665
|
*/
|
|
@@ -612,6 +668,18 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
612
668
|
* Max number of issue creation requests per minute per user.
|
|
613
669
|
*/
|
|
614
670
|
readonly issuesCreateLimit: pulumi.Output<number>;
|
|
671
|
+
/**
|
|
672
|
+
* ID of the OAuth application used to authenticate with the GitLab for Jira Cloud app.
|
|
673
|
+
*/
|
|
674
|
+
readonly jiraConnectApplicationKey: pulumi.Output<string>;
|
|
675
|
+
/**
|
|
676
|
+
* URL of the GitLab instance used as a proxy for the GitLab for Jira Cloud app.
|
|
677
|
+
*/
|
|
678
|
+
readonly jiraConnectProxyUrl: pulumi.Output<string>;
|
|
679
|
+
/**
|
|
680
|
+
* Enable public key storage for the GitLab for Jira Cloud app.
|
|
681
|
+
*/
|
|
682
|
+
readonly jiraConnectPublicKeyStorageEnabled: pulumi.Output<boolean>;
|
|
615
683
|
/**
|
|
616
684
|
* Prevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time.
|
|
617
685
|
*/
|
|
@@ -620,6 +688,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
620
688
|
* Increase this value when any cached Markdown should be invalidated.
|
|
621
689
|
*/
|
|
622
690
|
readonly localMarkdownVersion: pulumi.Output<number>;
|
|
691
|
+
/**
|
|
692
|
+
* Indicates whether the GitLab Duo features enabled setting is enforced for all subgroups. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
693
|
+
*/
|
|
694
|
+
readonly lockDuoFeaturesEnabled: pulumi.Output<boolean>;
|
|
623
695
|
/**
|
|
624
696
|
* Enable Mailgun event receiver.
|
|
625
697
|
*/
|
|
@@ -636,6 +708,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
636
708
|
* Message displayed when instance is in maintenance mode.
|
|
637
709
|
*/
|
|
638
710
|
readonly maintenanceModeMessage: pulumi.Output<string>;
|
|
711
|
+
/**
|
|
712
|
+
* Use repo.maven.apache.org as a default remote repository when the package is not found in the GitLab Package Registry for Maven. Premium and Ultimate only.
|
|
713
|
+
*/
|
|
714
|
+
readonly mavenPackageRequestsForwarding: pulumi.Output<boolean>;
|
|
639
715
|
/**
|
|
640
716
|
* Maximum artifacts size in MB.
|
|
641
717
|
*/
|
|
@@ -644,14 +720,26 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
644
720
|
* Limit attachment size in MB.
|
|
645
721
|
*/
|
|
646
722
|
readonly maxAttachmentSize: pulumi.Output<number>;
|
|
723
|
+
/**
|
|
724
|
+
* Maximum decompressed archive size in bytes.
|
|
725
|
+
*/
|
|
726
|
+
readonly maxDecompressedArchiveSize: pulumi.Output<number>;
|
|
647
727
|
/**
|
|
648
728
|
* Maximum export size in MB. 0 for unlimited.
|
|
649
729
|
*/
|
|
650
730
|
readonly maxExportSize: pulumi.Output<number>;
|
|
731
|
+
/**
|
|
732
|
+
* Maximum remote file size for imports from external object storages. Introduced in GitLab 16.3.
|
|
733
|
+
*/
|
|
734
|
+
readonly maxImportRemoteFileSize: pulumi.Output<number>;
|
|
651
735
|
/**
|
|
652
736
|
* Maximum import size in MB. 0 for unlimited.
|
|
653
737
|
*/
|
|
654
738
|
readonly maxImportSize: pulumi.Output<number>;
|
|
739
|
+
/**
|
|
740
|
+
* Maximum number of sign-in attempts before locking out the user.
|
|
741
|
+
*/
|
|
742
|
+
readonly maxLoginAttempts: pulumi.Output<number>;
|
|
655
743
|
/**
|
|
656
744
|
* Maximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1.
|
|
657
745
|
*/
|
|
@@ -701,10 +789,22 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
701
789
|
* Use npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm.
|
|
702
790
|
*/
|
|
703
791
|
readonly npmPackageRequestsForwarding: pulumi.Output<boolean>;
|
|
792
|
+
/**
|
|
793
|
+
* Indicates whether to skip metadata URL validation for the NuGet package. Introduced in GitLab 17.0.
|
|
794
|
+
*/
|
|
795
|
+
readonly nugetSkipMetadataUrlValidation: pulumi.Output<boolean>;
|
|
704
796
|
/**
|
|
705
797
|
* Define a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled.
|
|
706
798
|
*/
|
|
707
799
|
readonly outboundLocalRequestsWhitelists: pulumi.Output<string[]>;
|
|
800
|
+
/**
|
|
801
|
+
* List of package registry metadata to sync. See the list of the available values (https://gitlab.com/gitlab-org/gitlab/-/blob/ace16c20d5da7c4928dd03fb139692638b557fe3/app/models/concerns/enums/package_metadata.rb#L5). Self-managed, Ultimate only.
|
|
802
|
+
*/
|
|
803
|
+
readonly packageMetadataPurlTypes: pulumi.Output<number[]>;
|
|
804
|
+
/**
|
|
805
|
+
* Enable to allow anyone to pull from Package Registry visible and changeable.
|
|
806
|
+
*/
|
|
807
|
+
readonly packageRegistryAllowAnyoneToPullOption: pulumi.Output<boolean>;
|
|
708
808
|
/**
|
|
709
809
|
* Number of workers assigned to the packages cleanup policies.
|
|
710
810
|
*/
|
|
@@ -765,6 +865,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
765
865
|
* Enable project export.
|
|
766
866
|
*/
|
|
767
867
|
readonly projectExportEnabled: pulumi.Output<boolean>;
|
|
868
|
+
/**
|
|
869
|
+
* Maximum authenticated requests to /project/:id/jobs per minute. Introduced in GitLab 16.5.
|
|
870
|
+
*/
|
|
871
|
+
readonly projectJobsApiRateLimit: pulumi.Output<number>;
|
|
872
|
+
/**
|
|
873
|
+
* Introduced in GitLab 15.10. Max number of requests per 10 minutes per IP address for unauthenticated requests to the list all projects API. To disable throttling set to 0.
|
|
874
|
+
*/
|
|
875
|
+
readonly projectsApiRateLimitUnauthenticated: pulumi.Output<number>;
|
|
768
876
|
/**
|
|
769
877
|
* Enable Prometheus metrics.
|
|
770
878
|
*/
|
|
@@ -809,6 +917,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
809
917
|
* Maximum push size (MB).
|
|
810
918
|
*/
|
|
811
919
|
readonly receiveMaxInputSize: pulumi.Output<number>;
|
|
920
|
+
/**
|
|
921
|
+
* Enable receptive mode for GitLab Agents for Kubernetes.
|
|
922
|
+
*/
|
|
923
|
+
readonly receptiveClusterAgentsEnabled: pulumi.Output<boolean>;
|
|
924
|
+
/**
|
|
925
|
+
* Enable Remember me setting. Introduced in GitLab 16.0.
|
|
926
|
+
*/
|
|
927
|
+
readonly rememberMeEnabled: pulumi.Output<boolean>;
|
|
812
928
|
/**
|
|
813
929
|
* GitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues.
|
|
814
930
|
*/
|
|
@@ -831,6 +947,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
831
947
|
* When enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator.
|
|
832
948
|
*/
|
|
833
949
|
readonly requireAdminApprovalAfterUserSignup: pulumi.Output<boolean>;
|
|
950
|
+
/**
|
|
951
|
+
* Allow administrators to require 2FA for all administrators on the instance.
|
|
952
|
+
*/
|
|
953
|
+
readonly requireAdminTwoFactorAuthentication: pulumi.Output<boolean>;
|
|
954
|
+
/**
|
|
955
|
+
* When enabled, users must set an expiration date when creating a group or project access token, or a personal access token owned by a non-service account.
|
|
956
|
+
*/
|
|
957
|
+
readonly requirePersonalAccessTokenExpiry: pulumi.Output<boolean>;
|
|
834
958
|
/**
|
|
835
959
|
* (If enabled, requires: two*factor*grace_period) Require all users to set up Two-factor authentication.
|
|
836
960
|
*/
|
|
@@ -851,10 +975,26 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
851
975
|
* Max number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0.
|
|
852
976
|
*/
|
|
853
977
|
readonly searchRateLimitUnauthenticated: pulumi.Output<number>;
|
|
978
|
+
/**
|
|
979
|
+
* Maximum number of active merge request approval policies per security policy project. Maximum: 20
|
|
980
|
+
*/
|
|
981
|
+
readonly securityApprovalPoliciesLimit: pulumi.Output<number>;
|
|
982
|
+
/**
|
|
983
|
+
* Whether to look up merge request approval policy approval groups globally or within project hierarchies.
|
|
984
|
+
*/
|
|
985
|
+
readonly securityPolicyGlobalGroupApproversEnabled: pulumi.Output<boolean>;
|
|
986
|
+
/**
|
|
987
|
+
* Public security contact information. Introduced in GitLab 16.7.
|
|
988
|
+
*/
|
|
989
|
+
readonly securityTxtContent: pulumi.Output<string>;
|
|
854
990
|
/**
|
|
855
991
|
* Send confirmation email on sign-up.
|
|
856
992
|
*/
|
|
857
993
|
readonly sendUserConfirmationEmail: pulumi.Output<boolean>;
|
|
994
|
+
/**
|
|
995
|
+
* Flag to indicate if token expiry date can be optional for service account users
|
|
996
|
+
*/
|
|
997
|
+
readonly serviceAccessTokensExpirationEnforced: pulumi.Output<boolean>;
|
|
858
998
|
/**
|
|
859
999
|
* Session duration in minutes. GitLab restart is required to apply changes.
|
|
860
1000
|
*/
|
|
@@ -891,6 +1031,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
891
1031
|
* Enable registration.
|
|
892
1032
|
*/
|
|
893
1033
|
readonly signupEnabled: pulumi.Output<boolean>;
|
|
1034
|
+
/**
|
|
1035
|
+
* Enable Silent admin exports.
|
|
1036
|
+
*/
|
|
1037
|
+
readonly silentAdminExportsEnabled: pulumi.Output<boolean>;
|
|
1038
|
+
/**
|
|
1039
|
+
* Enable Silent mode.
|
|
1040
|
+
*/
|
|
1041
|
+
readonly silentModeEnabled: pulumi.Output<boolean>;
|
|
894
1042
|
/**
|
|
895
1043
|
* (If enabled, requires: slack*app*id, slack*app*secret and slack*app*secret) Enable Slack app.
|
|
896
1044
|
*/
|
|
@@ -927,6 +1075,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
927
1075
|
* The Snowplow cookie domain. (for example, .gitlab.com)
|
|
928
1076
|
*/
|
|
929
1077
|
readonly snowplowCookieDomain: pulumi.Output<string>;
|
|
1078
|
+
/**
|
|
1079
|
+
* The Snowplow collector for database events hostname. (for example, db-snowplow.trx.gitlab.net)
|
|
1080
|
+
*/
|
|
1081
|
+
readonly snowplowDatabaseCollectorHostname: pulumi.Output<string>;
|
|
930
1082
|
/**
|
|
931
1083
|
* Enable snowplow tracking.
|
|
932
1084
|
*/
|
|
@@ -955,6 +1107,14 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
955
1107
|
* URL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted.
|
|
956
1108
|
*/
|
|
957
1109
|
readonly spamCheckEndpointUrl: pulumi.Output<string>;
|
|
1110
|
+
/**
|
|
1111
|
+
* Authentication token for the external storage linked in static*objects*external*storage*url.
|
|
1112
|
+
*/
|
|
1113
|
+
readonly staticObjectsExternalStorageAuthToken: pulumi.Output<string | undefined>;
|
|
1114
|
+
/**
|
|
1115
|
+
* URL to an external storage for repository static objects.
|
|
1116
|
+
*/
|
|
1117
|
+
readonly staticObjectsExternalStorageUrl: pulumi.Output<string | undefined>;
|
|
958
1118
|
/**
|
|
959
1119
|
* Enable pipeline suggestion banner.
|
|
960
1120
|
*/
|
|
@@ -1047,6 +1207,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
1047
1207
|
* Amount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication.
|
|
1048
1208
|
*/
|
|
1049
1209
|
readonly twoFactorGracePeriod: pulumi.Output<number>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Specifies how many days after sign-up to delete users who have not confirmed their email. Only applicable if delete*unconfirmed*users is set to true. Must be 1 or greater. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
1212
|
+
*/
|
|
1213
|
+
readonly unconfirmedUsersDeleteAfterDays: pulumi.Output<number>;
|
|
1050
1214
|
/**
|
|
1051
1215
|
* (If enabled, requires: unique*ips*limit*per*user and unique*ips*limit*time*window) Limit sign in from multiple IPs.
|
|
1052
1216
|
*/
|
|
@@ -1059,10 +1223,18 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
1059
1223
|
* How many seconds an IP is counted towards the limit.
|
|
1060
1224
|
*/
|
|
1061
1225
|
readonly uniqueIpsLimitTimeWindow: pulumi.Output<number>;
|
|
1226
|
+
/**
|
|
1227
|
+
* Fetch GitLab Runner release version data from GitLab.com.
|
|
1228
|
+
*/
|
|
1229
|
+
readonly updateRunnerVersionsEnabled: pulumi.Output<boolean>;
|
|
1062
1230
|
/**
|
|
1063
1231
|
* Every week GitLab reports license usage back to GitLab, Inc.
|
|
1064
1232
|
*/
|
|
1065
1233
|
readonly usagePingEnabled: pulumi.Output<boolean>;
|
|
1234
|
+
/**
|
|
1235
|
+
* Enables ClickHouse as a data source for analytics reports. ClickHouse must be configured for this setting to take effect. Available on Premium and Ultimate only.
|
|
1236
|
+
*/
|
|
1237
|
+
readonly useClickhouseForAnalytics: pulumi.Output<boolean>;
|
|
1066
1238
|
/**
|
|
1067
1239
|
* Send an email to users upon account deactivation.
|
|
1068
1240
|
*/
|
|
@@ -1075,6 +1247,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
1075
1247
|
* Specify an email address regex pattern to identify default internal users.
|
|
1076
1248
|
*/
|
|
1077
1249
|
readonly userDefaultInternalRegex: pulumi.Output<string>;
|
|
1250
|
+
/**
|
|
1251
|
+
* Newly created users have private profile by default. Introduced in GitLab 15.8.
|
|
1252
|
+
*/
|
|
1253
|
+
readonly userDefaultsToPrivateProfile: pulumi.Output<boolean>;
|
|
1078
1254
|
/**
|
|
1079
1255
|
* Allow users to register any application to use GitLab as an OAuth provider.
|
|
1080
1256
|
*/
|
|
@@ -1083,6 +1259,10 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
1083
1259
|
* When set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key.
|
|
1084
1260
|
*/
|
|
1085
1261
|
readonly userShowAddSshKeyMessage: pulumi.Output<boolean>;
|
|
1262
|
+
/**
|
|
1263
|
+
* List of types which are allowed to register a GitLab Runner. Can be [], ['group'], ['project'] or ['group', 'project'].
|
|
1264
|
+
*/
|
|
1265
|
+
readonly validRunnerRegistrars: pulumi.Output<string[]>;
|
|
1086
1266
|
/**
|
|
1087
1267
|
* Let GitLab inform you when an update is available.
|
|
1088
1268
|
*/
|
|
@@ -1092,7 +1272,7 @@ export declare class ApplicationSettings extends pulumi.CustomResource {
|
|
|
1092
1272
|
*/
|
|
1093
1273
|
readonly webIdeClientsidePreviewEnabled: pulumi.Output<boolean>;
|
|
1094
1274
|
/**
|
|
1095
|
-
* What
|
|
1275
|
+
* What's new variant, possible values: all*tiers, current*tier, and disabled.
|
|
1096
1276
|
*/
|
|
1097
1277
|
readonly whatsNewVariant: pulumi.Output<string>;
|
|
1098
1278
|
/**
|
|
@@ -1480,6 +1660,10 @@ export interface ApplicationSettingsState {
|
|
|
1480
1660
|
* Maximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations.
|
|
1481
1661
|
*/
|
|
1482
1662
|
elasticsearchMaxBulkSizeMb?: pulumi.Input<number>;
|
|
1663
|
+
/**
|
|
1664
|
+
* Maximum concurrency of Elasticsearch code indexing background jobs. This only applies to repository indexing operations. Premium and Ultimate only.
|
|
1665
|
+
*/
|
|
1666
|
+
elasticsearchMaxCodeIndexingConcurrency?: pulumi.Input<number>;
|
|
1483
1667
|
/**
|
|
1484
1668
|
* The namespaces to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
1485
1669
|
*/
|
|
@@ -1492,6 +1676,10 @@ export interface ApplicationSettingsState {
|
|
|
1492
1676
|
* The projects to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
1493
1677
|
*/
|
|
1494
1678
|
elasticsearchProjectIds?: pulumi.Input<pulumi.Input<number>[]>;
|
|
1679
|
+
/**
|
|
1680
|
+
* Enable automatic requeuing of indexing workers. This improves non-code indexing throughput by enqueuing Sidekiq jobs until all documents are processed. Premium and Ultimate only.
|
|
1681
|
+
*/
|
|
1682
|
+
elasticsearchRequeueWorkers?: pulumi.Input<boolean>;
|
|
1495
1683
|
/**
|
|
1496
1684
|
* Enable Elasticsearch search.
|
|
1497
1685
|
*/
|
|
@@ -1504,6 +1692,10 @@ export interface ApplicationSettingsState {
|
|
|
1504
1692
|
* The username of your Elasticsearch instance.
|
|
1505
1693
|
*/
|
|
1506
1694
|
elasticsearchUsername?: pulumi.Input<string>;
|
|
1695
|
+
/**
|
|
1696
|
+
* Number of indexing worker shards. This improves non-code indexing throughput by enqueuing more parallel Sidekiq jobs. Premium and Ultimate only.
|
|
1697
|
+
*/
|
|
1698
|
+
elasticsearchWorkerNumberOfShards?: pulumi.Input<number>;
|
|
1507
1699
|
/**
|
|
1508
1700
|
* Additional text added to the bottom of every email for legal/auditing/compliance reasons.
|
|
1509
1701
|
*/
|
|
@@ -1512,6 +1704,14 @@ export interface ApplicationSettingsState {
|
|
|
1512
1704
|
* Some email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead.
|
|
1513
1705
|
*/
|
|
1514
1706
|
emailAuthorInBody?: pulumi.Input<boolean>;
|
|
1707
|
+
/**
|
|
1708
|
+
* Specifies whether users must confirm their email before sign in. Possible values are off, soft, and hard.
|
|
1709
|
+
*/
|
|
1710
|
+
emailConfirmationSetting?: pulumi.Input<string>;
|
|
1711
|
+
/**
|
|
1712
|
+
* Show the external redirect page that warns you about user-generated content in GitLab Pages.
|
|
1713
|
+
*/
|
|
1714
|
+
enableArtifactExternalRedirectWarningPage?: pulumi.Input<boolean>;
|
|
1515
1715
|
/**
|
|
1516
1716
|
* Enabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols.
|
|
1517
1717
|
*/
|
|
@@ -1564,6 +1764,10 @@ export interface ApplicationSettingsState {
|
|
|
1564
1764
|
* URL to use for pipeline validation requests.
|
|
1565
1765
|
*/
|
|
1566
1766
|
externalPipelineValidationServiceUrl?: pulumi.Input<string>;
|
|
1767
|
+
/**
|
|
1768
|
+
* Time period in minutes after which the user is unlocked when maximum number of failed sign-in attempts reached.
|
|
1769
|
+
*/
|
|
1770
|
+
failedLoginAttemptsUnlockPeriodInMinutes?: pulumi.Input<number>;
|
|
1567
1771
|
/**
|
|
1568
1772
|
* The ID of a project to load custom file templates from.
|
|
1569
1773
|
*/
|
|
@@ -1581,7 +1785,11 @@ export interface ApplicationSettingsState {
|
|
|
1581
1785
|
*/
|
|
1582
1786
|
geoStatusTimeout?: pulumi.Input<number>;
|
|
1583
1787
|
/**
|
|
1584
|
-
* List of
|
|
1788
|
+
* List of user IDs that are emailed when the Git abuse rate limit is exceeded. Maximum: 100 user IDs. Introduced in GitLab 15.9. Self-managed, Ultimate only.
|
|
1789
|
+
*/
|
|
1790
|
+
gitRateLimitUsersAlertlists?: pulumi.Input<pulumi.Input<number>[]>;
|
|
1791
|
+
/**
|
|
1792
|
+
* List of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2. Self-managed, Ultimate only.
|
|
1585
1793
|
*/
|
|
1586
1794
|
gitRateLimitUsersAllowlists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1587
1795
|
/**
|
|
@@ -1600,6 +1808,30 @@ export interface ApplicationSettingsState {
|
|
|
1600
1808
|
* Medium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts.
|
|
1601
1809
|
*/
|
|
1602
1810
|
gitalyTimeoutMedium?: pulumi.Input<number>;
|
|
1811
|
+
/**
|
|
1812
|
+
* Indicates whether the instance was provisioned for GitLab Dedicated.
|
|
1813
|
+
*/
|
|
1814
|
+
gitlabDedicatedInstance?: pulumi.Input<boolean>;
|
|
1815
|
+
/**
|
|
1816
|
+
* Indicates whether the instance was provisioned with the GitLab Environment Toolkit for Service Ping reporting.
|
|
1817
|
+
*/
|
|
1818
|
+
gitlabEnvironmentToolkitInstance?: pulumi.Input<boolean>;
|
|
1819
|
+
/**
|
|
1820
|
+
* Maximum number of Git operations per minute a user can perform. Introduced in GitLab 16.2.
|
|
1821
|
+
*/
|
|
1822
|
+
gitlabShellOperationLimit?: pulumi.Input<number>;
|
|
1823
|
+
/**
|
|
1824
|
+
* Enable Gitpod integration.
|
|
1825
|
+
*/
|
|
1826
|
+
gitpodEnabled?: pulumi.Input<boolean>;
|
|
1827
|
+
/**
|
|
1828
|
+
* The Gitpod instance URL for integration.
|
|
1829
|
+
*/
|
|
1830
|
+
gitpodUrl?: pulumi.Input<string>;
|
|
1831
|
+
/**
|
|
1832
|
+
* Comma-separated list of IP addresses and CIDRs always allowed for inbound traffic. For example, 1.1.1.1, 2.2.2.0/24.
|
|
1833
|
+
*/
|
|
1834
|
+
globallyAllowedIps?: pulumi.Input<string>;
|
|
1603
1835
|
/**
|
|
1604
1836
|
* Enable Grafana.
|
|
1605
1837
|
*/
|
|
@@ -1696,6 +1928,10 @@ export interface ApplicationSettingsState {
|
|
|
1696
1928
|
* If delete*inactive*projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0.
|
|
1697
1929
|
*/
|
|
1698
1930
|
inactiveProjectsSendWarningEmailAfterMonths?: pulumi.Input<number>;
|
|
1931
|
+
/**
|
|
1932
|
+
* Whether or not optional metrics are enabled in Service Ping. Introduced in GitLab 16.10.
|
|
1933
|
+
*/
|
|
1934
|
+
includeOptionalMetricsInServicePing?: pulumi.Input<boolean>;
|
|
1699
1935
|
/**
|
|
1700
1936
|
* Enable Invisible CAPTCHA spam detection during sign-up.
|
|
1701
1937
|
*/
|
|
@@ -1704,6 +1940,18 @@ export interface ApplicationSettingsState {
|
|
|
1704
1940
|
* Max number of issue creation requests per minute per user.
|
|
1705
1941
|
*/
|
|
1706
1942
|
issuesCreateLimit?: pulumi.Input<number>;
|
|
1943
|
+
/**
|
|
1944
|
+
* ID of the OAuth application used to authenticate with the GitLab for Jira Cloud app.
|
|
1945
|
+
*/
|
|
1946
|
+
jiraConnectApplicationKey?: pulumi.Input<string>;
|
|
1947
|
+
/**
|
|
1948
|
+
* URL of the GitLab instance used as a proxy for the GitLab for Jira Cloud app.
|
|
1949
|
+
*/
|
|
1950
|
+
jiraConnectProxyUrl?: pulumi.Input<string>;
|
|
1951
|
+
/**
|
|
1952
|
+
* Enable public key storage for the GitLab for Jira Cloud app.
|
|
1953
|
+
*/
|
|
1954
|
+
jiraConnectPublicKeyStorageEnabled?: pulumi.Input<boolean>;
|
|
1707
1955
|
/**
|
|
1708
1956
|
* Prevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time.
|
|
1709
1957
|
*/
|
|
@@ -1712,6 +1960,10 @@ export interface ApplicationSettingsState {
|
|
|
1712
1960
|
* Increase this value when any cached Markdown should be invalidated.
|
|
1713
1961
|
*/
|
|
1714
1962
|
localMarkdownVersion?: pulumi.Input<number>;
|
|
1963
|
+
/**
|
|
1964
|
+
* Indicates whether the GitLab Duo features enabled setting is enforced for all subgroups. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
1965
|
+
*/
|
|
1966
|
+
lockDuoFeaturesEnabled?: pulumi.Input<boolean>;
|
|
1715
1967
|
/**
|
|
1716
1968
|
* Enable Mailgun event receiver.
|
|
1717
1969
|
*/
|
|
@@ -1728,6 +1980,10 @@ export interface ApplicationSettingsState {
|
|
|
1728
1980
|
* Message displayed when instance is in maintenance mode.
|
|
1729
1981
|
*/
|
|
1730
1982
|
maintenanceModeMessage?: pulumi.Input<string>;
|
|
1983
|
+
/**
|
|
1984
|
+
* Use repo.maven.apache.org as a default remote repository when the package is not found in the GitLab Package Registry for Maven. Premium and Ultimate only.
|
|
1985
|
+
*/
|
|
1986
|
+
mavenPackageRequestsForwarding?: pulumi.Input<boolean>;
|
|
1731
1987
|
/**
|
|
1732
1988
|
* Maximum artifacts size in MB.
|
|
1733
1989
|
*/
|
|
@@ -1736,14 +1992,26 @@ export interface ApplicationSettingsState {
|
|
|
1736
1992
|
* Limit attachment size in MB.
|
|
1737
1993
|
*/
|
|
1738
1994
|
maxAttachmentSize?: pulumi.Input<number>;
|
|
1995
|
+
/**
|
|
1996
|
+
* Maximum decompressed archive size in bytes.
|
|
1997
|
+
*/
|
|
1998
|
+
maxDecompressedArchiveSize?: pulumi.Input<number>;
|
|
1739
1999
|
/**
|
|
1740
2000
|
* Maximum export size in MB. 0 for unlimited.
|
|
1741
2001
|
*/
|
|
1742
2002
|
maxExportSize?: pulumi.Input<number>;
|
|
2003
|
+
/**
|
|
2004
|
+
* Maximum remote file size for imports from external object storages. Introduced in GitLab 16.3.
|
|
2005
|
+
*/
|
|
2006
|
+
maxImportRemoteFileSize?: pulumi.Input<number>;
|
|
1743
2007
|
/**
|
|
1744
2008
|
* Maximum import size in MB. 0 for unlimited.
|
|
1745
2009
|
*/
|
|
1746
2010
|
maxImportSize?: pulumi.Input<number>;
|
|
2011
|
+
/**
|
|
2012
|
+
* Maximum number of sign-in attempts before locking out the user.
|
|
2013
|
+
*/
|
|
2014
|
+
maxLoginAttempts?: pulumi.Input<number>;
|
|
1747
2015
|
/**
|
|
1748
2016
|
* Maximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1.
|
|
1749
2017
|
*/
|
|
@@ -1793,10 +2061,22 @@ export interface ApplicationSettingsState {
|
|
|
1793
2061
|
* Use npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm.
|
|
1794
2062
|
*/
|
|
1795
2063
|
npmPackageRequestsForwarding?: pulumi.Input<boolean>;
|
|
2064
|
+
/**
|
|
2065
|
+
* Indicates whether to skip metadata URL validation for the NuGet package. Introduced in GitLab 17.0.
|
|
2066
|
+
*/
|
|
2067
|
+
nugetSkipMetadataUrlValidation?: pulumi.Input<boolean>;
|
|
1796
2068
|
/**
|
|
1797
2069
|
* Define a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled.
|
|
1798
2070
|
*/
|
|
1799
2071
|
outboundLocalRequestsWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2072
|
+
/**
|
|
2073
|
+
* List of package registry metadata to sync. See the list of the available values (https://gitlab.com/gitlab-org/gitlab/-/blob/ace16c20d5da7c4928dd03fb139692638b557fe3/app/models/concerns/enums/package_metadata.rb#L5). Self-managed, Ultimate only.
|
|
2074
|
+
*/
|
|
2075
|
+
packageMetadataPurlTypes?: pulumi.Input<pulumi.Input<number>[]>;
|
|
2076
|
+
/**
|
|
2077
|
+
* Enable to allow anyone to pull from Package Registry visible and changeable.
|
|
2078
|
+
*/
|
|
2079
|
+
packageRegistryAllowAnyoneToPullOption?: pulumi.Input<boolean>;
|
|
1800
2080
|
/**
|
|
1801
2081
|
* Number of workers assigned to the packages cleanup policies.
|
|
1802
2082
|
*/
|
|
@@ -1857,6 +2137,14 @@ export interface ApplicationSettingsState {
|
|
|
1857
2137
|
* Enable project export.
|
|
1858
2138
|
*/
|
|
1859
2139
|
projectExportEnabled?: pulumi.Input<boolean>;
|
|
2140
|
+
/**
|
|
2141
|
+
* Maximum authenticated requests to /project/:id/jobs per minute. Introduced in GitLab 16.5.
|
|
2142
|
+
*/
|
|
2143
|
+
projectJobsApiRateLimit?: pulumi.Input<number>;
|
|
2144
|
+
/**
|
|
2145
|
+
* Introduced in GitLab 15.10. Max number of requests per 10 minutes per IP address for unauthenticated requests to the list all projects API. To disable throttling set to 0.
|
|
2146
|
+
*/
|
|
2147
|
+
projectsApiRateLimitUnauthenticated?: pulumi.Input<number>;
|
|
1860
2148
|
/**
|
|
1861
2149
|
* Enable Prometheus metrics.
|
|
1862
2150
|
*/
|
|
@@ -1901,6 +2189,14 @@ export interface ApplicationSettingsState {
|
|
|
1901
2189
|
* Maximum push size (MB).
|
|
1902
2190
|
*/
|
|
1903
2191
|
receiveMaxInputSize?: pulumi.Input<number>;
|
|
2192
|
+
/**
|
|
2193
|
+
* Enable receptive mode for GitLab Agents for Kubernetes.
|
|
2194
|
+
*/
|
|
2195
|
+
receptiveClusterAgentsEnabled?: pulumi.Input<boolean>;
|
|
2196
|
+
/**
|
|
2197
|
+
* Enable Remember me setting. Introduced in GitLab 16.0.
|
|
2198
|
+
*/
|
|
2199
|
+
rememberMeEnabled?: pulumi.Input<boolean>;
|
|
1904
2200
|
/**
|
|
1905
2201
|
* GitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues.
|
|
1906
2202
|
*/
|
|
@@ -1923,6 +2219,14 @@ export interface ApplicationSettingsState {
|
|
|
1923
2219
|
* When enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator.
|
|
1924
2220
|
*/
|
|
1925
2221
|
requireAdminApprovalAfterUserSignup?: pulumi.Input<boolean>;
|
|
2222
|
+
/**
|
|
2223
|
+
* Allow administrators to require 2FA for all administrators on the instance.
|
|
2224
|
+
*/
|
|
2225
|
+
requireAdminTwoFactorAuthentication?: pulumi.Input<boolean>;
|
|
2226
|
+
/**
|
|
2227
|
+
* When enabled, users must set an expiration date when creating a group or project access token, or a personal access token owned by a non-service account.
|
|
2228
|
+
*/
|
|
2229
|
+
requirePersonalAccessTokenExpiry?: pulumi.Input<boolean>;
|
|
1926
2230
|
/**
|
|
1927
2231
|
* (If enabled, requires: two*factor*grace_period) Require all users to set up Two-factor authentication.
|
|
1928
2232
|
*/
|
|
@@ -1943,10 +2247,26 @@ export interface ApplicationSettingsState {
|
|
|
1943
2247
|
* Max number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0.
|
|
1944
2248
|
*/
|
|
1945
2249
|
searchRateLimitUnauthenticated?: pulumi.Input<number>;
|
|
2250
|
+
/**
|
|
2251
|
+
* Maximum number of active merge request approval policies per security policy project. Maximum: 20
|
|
2252
|
+
*/
|
|
2253
|
+
securityApprovalPoliciesLimit?: pulumi.Input<number>;
|
|
2254
|
+
/**
|
|
2255
|
+
* Whether to look up merge request approval policy approval groups globally or within project hierarchies.
|
|
2256
|
+
*/
|
|
2257
|
+
securityPolicyGlobalGroupApproversEnabled?: pulumi.Input<boolean>;
|
|
2258
|
+
/**
|
|
2259
|
+
* Public security contact information. Introduced in GitLab 16.7.
|
|
2260
|
+
*/
|
|
2261
|
+
securityTxtContent?: pulumi.Input<string>;
|
|
1946
2262
|
/**
|
|
1947
2263
|
* Send confirmation email on sign-up.
|
|
1948
2264
|
*/
|
|
1949
2265
|
sendUserConfirmationEmail?: pulumi.Input<boolean>;
|
|
2266
|
+
/**
|
|
2267
|
+
* Flag to indicate if token expiry date can be optional for service account users
|
|
2268
|
+
*/
|
|
2269
|
+
serviceAccessTokensExpirationEnforced?: pulumi.Input<boolean>;
|
|
1950
2270
|
/**
|
|
1951
2271
|
* Session duration in minutes. GitLab restart is required to apply changes.
|
|
1952
2272
|
*/
|
|
@@ -1983,6 +2303,14 @@ export interface ApplicationSettingsState {
|
|
|
1983
2303
|
* Enable registration.
|
|
1984
2304
|
*/
|
|
1985
2305
|
signupEnabled?: pulumi.Input<boolean>;
|
|
2306
|
+
/**
|
|
2307
|
+
* Enable Silent admin exports.
|
|
2308
|
+
*/
|
|
2309
|
+
silentAdminExportsEnabled?: pulumi.Input<boolean>;
|
|
2310
|
+
/**
|
|
2311
|
+
* Enable Silent mode.
|
|
2312
|
+
*/
|
|
2313
|
+
silentModeEnabled?: pulumi.Input<boolean>;
|
|
1986
2314
|
/**
|
|
1987
2315
|
* (If enabled, requires: slack*app*id, slack*app*secret and slack*app*secret) Enable Slack app.
|
|
1988
2316
|
*/
|
|
@@ -2019,6 +2347,10 @@ export interface ApplicationSettingsState {
|
|
|
2019
2347
|
* The Snowplow cookie domain. (for example, .gitlab.com)
|
|
2020
2348
|
*/
|
|
2021
2349
|
snowplowCookieDomain?: pulumi.Input<string>;
|
|
2350
|
+
/**
|
|
2351
|
+
* The Snowplow collector for database events hostname. (for example, db-snowplow.trx.gitlab.net)
|
|
2352
|
+
*/
|
|
2353
|
+
snowplowDatabaseCollectorHostname?: pulumi.Input<string>;
|
|
2022
2354
|
/**
|
|
2023
2355
|
* Enable snowplow tracking.
|
|
2024
2356
|
*/
|
|
@@ -2047,6 +2379,14 @@ export interface ApplicationSettingsState {
|
|
|
2047
2379
|
* URL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted.
|
|
2048
2380
|
*/
|
|
2049
2381
|
spamCheckEndpointUrl?: pulumi.Input<string>;
|
|
2382
|
+
/**
|
|
2383
|
+
* Authentication token for the external storage linked in static*objects*external*storage*url.
|
|
2384
|
+
*/
|
|
2385
|
+
staticObjectsExternalStorageAuthToken?: pulumi.Input<string>;
|
|
2386
|
+
/**
|
|
2387
|
+
* URL to an external storage for repository static objects.
|
|
2388
|
+
*/
|
|
2389
|
+
staticObjectsExternalStorageUrl?: pulumi.Input<string>;
|
|
2050
2390
|
/**
|
|
2051
2391
|
* Enable pipeline suggestion banner.
|
|
2052
2392
|
*/
|
|
@@ -2139,6 +2479,10 @@ export interface ApplicationSettingsState {
|
|
|
2139
2479
|
* Amount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication.
|
|
2140
2480
|
*/
|
|
2141
2481
|
twoFactorGracePeriod?: pulumi.Input<number>;
|
|
2482
|
+
/**
|
|
2483
|
+
* Specifies how many days after sign-up to delete users who have not confirmed their email. Only applicable if delete*unconfirmed*users is set to true. Must be 1 or greater. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
2484
|
+
*/
|
|
2485
|
+
unconfirmedUsersDeleteAfterDays?: pulumi.Input<number>;
|
|
2142
2486
|
/**
|
|
2143
2487
|
* (If enabled, requires: unique*ips*limit*per*user and unique*ips*limit*time*window) Limit sign in from multiple IPs.
|
|
2144
2488
|
*/
|
|
@@ -2151,10 +2495,18 @@ export interface ApplicationSettingsState {
|
|
|
2151
2495
|
* How many seconds an IP is counted towards the limit.
|
|
2152
2496
|
*/
|
|
2153
2497
|
uniqueIpsLimitTimeWindow?: pulumi.Input<number>;
|
|
2498
|
+
/**
|
|
2499
|
+
* Fetch GitLab Runner release version data from GitLab.com.
|
|
2500
|
+
*/
|
|
2501
|
+
updateRunnerVersionsEnabled?: pulumi.Input<boolean>;
|
|
2154
2502
|
/**
|
|
2155
2503
|
* Every week GitLab reports license usage back to GitLab, Inc.
|
|
2156
2504
|
*/
|
|
2157
2505
|
usagePingEnabled?: pulumi.Input<boolean>;
|
|
2506
|
+
/**
|
|
2507
|
+
* Enables ClickHouse as a data source for analytics reports. ClickHouse must be configured for this setting to take effect. Available on Premium and Ultimate only.
|
|
2508
|
+
*/
|
|
2509
|
+
useClickhouseForAnalytics?: pulumi.Input<boolean>;
|
|
2158
2510
|
/**
|
|
2159
2511
|
* Send an email to users upon account deactivation.
|
|
2160
2512
|
*/
|
|
@@ -2167,6 +2519,10 @@ export interface ApplicationSettingsState {
|
|
|
2167
2519
|
* Specify an email address regex pattern to identify default internal users.
|
|
2168
2520
|
*/
|
|
2169
2521
|
userDefaultInternalRegex?: pulumi.Input<string>;
|
|
2522
|
+
/**
|
|
2523
|
+
* Newly created users have private profile by default. Introduced in GitLab 15.8.
|
|
2524
|
+
*/
|
|
2525
|
+
userDefaultsToPrivateProfile?: pulumi.Input<boolean>;
|
|
2170
2526
|
/**
|
|
2171
2527
|
* Allow users to register any application to use GitLab as an OAuth provider.
|
|
2172
2528
|
*/
|
|
@@ -2175,6 +2531,10 @@ export interface ApplicationSettingsState {
|
|
|
2175
2531
|
* When set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key.
|
|
2176
2532
|
*/
|
|
2177
2533
|
userShowAddSshKeyMessage?: pulumi.Input<boolean>;
|
|
2534
|
+
/**
|
|
2535
|
+
* List of types which are allowed to register a GitLab Runner. Can be [], ['group'], ['project'] or ['group', 'project'].
|
|
2536
|
+
*/
|
|
2537
|
+
validRunnerRegistrars?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2178
2538
|
/**
|
|
2179
2539
|
* Let GitLab inform you when an update is available.
|
|
2180
2540
|
*/
|
|
@@ -2184,7 +2544,7 @@ export interface ApplicationSettingsState {
|
|
|
2184
2544
|
*/
|
|
2185
2545
|
webIdeClientsidePreviewEnabled?: pulumi.Input<boolean>;
|
|
2186
2546
|
/**
|
|
2187
|
-
* What
|
|
2547
|
+
* What's new variant, possible values: all*tiers, current*tier, and disabled.
|
|
2188
2548
|
*/
|
|
2189
2549
|
whatsNewVariant?: pulumi.Input<string>;
|
|
2190
2550
|
/**
|
|
@@ -2564,6 +2924,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2564
2924
|
* Maximum size of Elasticsearch bulk indexing requests in MB. This only applies to repository indexing operations.
|
|
2565
2925
|
*/
|
|
2566
2926
|
elasticsearchMaxBulkSizeMb?: pulumi.Input<number>;
|
|
2927
|
+
/**
|
|
2928
|
+
* Maximum concurrency of Elasticsearch code indexing background jobs. This only applies to repository indexing operations. Premium and Ultimate only.
|
|
2929
|
+
*/
|
|
2930
|
+
elasticsearchMaxCodeIndexingConcurrency?: pulumi.Input<number>;
|
|
2567
2931
|
/**
|
|
2568
2932
|
* The namespaces to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
2569
2933
|
*/
|
|
@@ -2576,6 +2940,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2576
2940
|
* The projects to index via Elasticsearch if elasticsearch*limit*indexing is enabled.
|
|
2577
2941
|
*/
|
|
2578
2942
|
elasticsearchProjectIds?: pulumi.Input<pulumi.Input<number>[]>;
|
|
2943
|
+
/**
|
|
2944
|
+
* Enable automatic requeuing of indexing workers. This improves non-code indexing throughput by enqueuing Sidekiq jobs until all documents are processed. Premium and Ultimate only.
|
|
2945
|
+
*/
|
|
2946
|
+
elasticsearchRequeueWorkers?: pulumi.Input<boolean>;
|
|
2579
2947
|
/**
|
|
2580
2948
|
* Enable Elasticsearch search.
|
|
2581
2949
|
*/
|
|
@@ -2588,6 +2956,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2588
2956
|
* The username of your Elasticsearch instance.
|
|
2589
2957
|
*/
|
|
2590
2958
|
elasticsearchUsername?: pulumi.Input<string>;
|
|
2959
|
+
/**
|
|
2960
|
+
* Number of indexing worker shards. This improves non-code indexing throughput by enqueuing more parallel Sidekiq jobs. Premium and Ultimate only.
|
|
2961
|
+
*/
|
|
2962
|
+
elasticsearchWorkerNumberOfShards?: pulumi.Input<number>;
|
|
2591
2963
|
/**
|
|
2592
2964
|
* Additional text added to the bottom of every email for legal/auditing/compliance reasons.
|
|
2593
2965
|
*/
|
|
@@ -2596,6 +2968,14 @@ export interface ApplicationSettingsArgs {
|
|
|
2596
2968
|
* Some email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead.
|
|
2597
2969
|
*/
|
|
2598
2970
|
emailAuthorInBody?: pulumi.Input<boolean>;
|
|
2971
|
+
/**
|
|
2972
|
+
* Specifies whether users must confirm their email before sign in. Possible values are off, soft, and hard.
|
|
2973
|
+
*/
|
|
2974
|
+
emailConfirmationSetting?: pulumi.Input<string>;
|
|
2975
|
+
/**
|
|
2976
|
+
* Show the external redirect page that warns you about user-generated content in GitLab Pages.
|
|
2977
|
+
*/
|
|
2978
|
+
enableArtifactExternalRedirectWarningPage?: pulumi.Input<boolean>;
|
|
2599
2979
|
/**
|
|
2600
2980
|
* Enabled protocols for Git access. Allowed values are: ssh, http, and nil to allow both protocols.
|
|
2601
2981
|
*/
|
|
@@ -2648,6 +3028,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2648
3028
|
* URL to use for pipeline validation requests.
|
|
2649
3029
|
*/
|
|
2650
3030
|
externalPipelineValidationServiceUrl?: pulumi.Input<string>;
|
|
3031
|
+
/**
|
|
3032
|
+
* Time period in minutes after which the user is unlocked when maximum number of failed sign-in attempts reached.
|
|
3033
|
+
*/
|
|
3034
|
+
failedLoginAttemptsUnlockPeriodInMinutes?: pulumi.Input<number>;
|
|
2651
3035
|
/**
|
|
2652
3036
|
* The ID of a project to load custom file templates from.
|
|
2653
3037
|
*/
|
|
@@ -2665,7 +3049,11 @@ export interface ApplicationSettingsArgs {
|
|
|
2665
3049
|
*/
|
|
2666
3050
|
geoStatusTimeout?: pulumi.Input<number>;
|
|
2667
3051
|
/**
|
|
2668
|
-
* List of
|
|
3052
|
+
* List of user IDs that are emailed when the Git abuse rate limit is exceeded. Maximum: 100 user IDs. Introduced in GitLab 15.9. Self-managed, Ultimate only.
|
|
3053
|
+
*/
|
|
3054
|
+
gitRateLimitUsersAlertlists?: pulumi.Input<pulumi.Input<number>[]>;
|
|
3055
|
+
/**
|
|
3056
|
+
* List of usernames excluded from Git anti-abuse rate limits. Maximum: 100 usernames. Introduced in GitLab 15.2. Self-managed, Ultimate only.
|
|
2669
3057
|
*/
|
|
2670
3058
|
gitRateLimitUsersAllowlists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2671
3059
|
/**
|
|
@@ -2684,6 +3072,22 @@ export interface ApplicationSettingsArgs {
|
|
|
2684
3072
|
* Medium Gitaly timeout, in seconds. This should be a value between the Fast and the Default timeout. Set to 0 to disable timeouts.
|
|
2685
3073
|
*/
|
|
2686
3074
|
gitalyTimeoutMedium?: pulumi.Input<number>;
|
|
3075
|
+
/**
|
|
3076
|
+
* Maximum number of Git operations per minute a user can perform. Introduced in GitLab 16.2.
|
|
3077
|
+
*/
|
|
3078
|
+
gitlabShellOperationLimit?: pulumi.Input<number>;
|
|
3079
|
+
/**
|
|
3080
|
+
* Enable Gitpod integration.
|
|
3081
|
+
*/
|
|
3082
|
+
gitpodEnabled?: pulumi.Input<boolean>;
|
|
3083
|
+
/**
|
|
3084
|
+
* The Gitpod instance URL for integration.
|
|
3085
|
+
*/
|
|
3086
|
+
gitpodUrl?: pulumi.Input<string>;
|
|
3087
|
+
/**
|
|
3088
|
+
* Comma-separated list of IP addresses and CIDRs always allowed for inbound traffic. For example, 1.1.1.1, 2.2.2.0/24.
|
|
3089
|
+
*/
|
|
3090
|
+
globallyAllowedIps?: pulumi.Input<string>;
|
|
2687
3091
|
/**
|
|
2688
3092
|
* Enable Grafana.
|
|
2689
3093
|
*/
|
|
@@ -2780,6 +3184,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2780
3184
|
* If delete*inactive*projects is true, sets the time (in months) to wait before emailing maintainers that the project is scheduled be deleted because it is inactive. Introduced in GitLab 14.10. Became operational in GitLab 15.0.
|
|
2781
3185
|
*/
|
|
2782
3186
|
inactiveProjectsSendWarningEmailAfterMonths?: pulumi.Input<number>;
|
|
3187
|
+
/**
|
|
3188
|
+
* Whether or not optional metrics are enabled in Service Ping. Introduced in GitLab 16.10.
|
|
3189
|
+
*/
|
|
3190
|
+
includeOptionalMetricsInServicePing?: pulumi.Input<boolean>;
|
|
2783
3191
|
/**
|
|
2784
3192
|
* Enable Invisible CAPTCHA spam detection during sign-up.
|
|
2785
3193
|
*/
|
|
@@ -2788,6 +3196,18 @@ export interface ApplicationSettingsArgs {
|
|
|
2788
3196
|
* Max number of issue creation requests per minute per user.
|
|
2789
3197
|
*/
|
|
2790
3198
|
issuesCreateLimit?: pulumi.Input<number>;
|
|
3199
|
+
/**
|
|
3200
|
+
* ID of the OAuth application used to authenticate with the GitLab for Jira Cloud app.
|
|
3201
|
+
*/
|
|
3202
|
+
jiraConnectApplicationKey?: pulumi.Input<string>;
|
|
3203
|
+
/**
|
|
3204
|
+
* URL of the GitLab instance used as a proxy for the GitLab for Jira Cloud app.
|
|
3205
|
+
*/
|
|
3206
|
+
jiraConnectProxyUrl?: pulumi.Input<string>;
|
|
3207
|
+
/**
|
|
3208
|
+
* Enable public key storage for the GitLab for Jira Cloud app.
|
|
3209
|
+
*/
|
|
3210
|
+
jiraConnectPublicKeyStorageEnabled?: pulumi.Input<boolean>;
|
|
2791
3211
|
/**
|
|
2792
3212
|
* Prevent the deletion of the artifacts from the most recent successful jobs, regardless of the expiry time.
|
|
2793
3213
|
*/
|
|
@@ -2796,6 +3216,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2796
3216
|
* Increase this value when any cached Markdown should be invalidated.
|
|
2797
3217
|
*/
|
|
2798
3218
|
localMarkdownVersion?: pulumi.Input<number>;
|
|
3219
|
+
/**
|
|
3220
|
+
* Indicates whether the GitLab Duo features enabled setting is enforced for all subgroups. Introduced in GitLab 16.10. Self-managed, Premium and Ultimate only.
|
|
3221
|
+
*/
|
|
3222
|
+
lockDuoFeaturesEnabled?: pulumi.Input<boolean>;
|
|
2799
3223
|
/**
|
|
2800
3224
|
* Enable Mailgun event receiver.
|
|
2801
3225
|
*/
|
|
@@ -2812,6 +3236,10 @@ export interface ApplicationSettingsArgs {
|
|
|
2812
3236
|
* Message displayed when instance is in maintenance mode.
|
|
2813
3237
|
*/
|
|
2814
3238
|
maintenanceModeMessage?: pulumi.Input<string>;
|
|
3239
|
+
/**
|
|
3240
|
+
* Use repo.maven.apache.org as a default remote repository when the package is not found in the GitLab Package Registry for Maven. Premium and Ultimate only.
|
|
3241
|
+
*/
|
|
3242
|
+
mavenPackageRequestsForwarding?: pulumi.Input<boolean>;
|
|
2815
3243
|
/**
|
|
2816
3244
|
* Maximum artifacts size in MB.
|
|
2817
3245
|
*/
|
|
@@ -2820,14 +3248,26 @@ export interface ApplicationSettingsArgs {
|
|
|
2820
3248
|
* Limit attachment size in MB.
|
|
2821
3249
|
*/
|
|
2822
3250
|
maxAttachmentSize?: pulumi.Input<number>;
|
|
3251
|
+
/**
|
|
3252
|
+
* Maximum decompressed archive size in bytes.
|
|
3253
|
+
*/
|
|
3254
|
+
maxDecompressedArchiveSize?: pulumi.Input<number>;
|
|
2823
3255
|
/**
|
|
2824
3256
|
* Maximum export size in MB. 0 for unlimited.
|
|
2825
3257
|
*/
|
|
2826
3258
|
maxExportSize?: pulumi.Input<number>;
|
|
3259
|
+
/**
|
|
3260
|
+
* Maximum remote file size for imports from external object storages. Introduced in GitLab 16.3.
|
|
3261
|
+
*/
|
|
3262
|
+
maxImportRemoteFileSize?: pulumi.Input<number>;
|
|
2827
3263
|
/**
|
|
2828
3264
|
* Maximum import size in MB. 0 for unlimited.
|
|
2829
3265
|
*/
|
|
2830
3266
|
maxImportSize?: pulumi.Input<number>;
|
|
3267
|
+
/**
|
|
3268
|
+
* Maximum number of sign-in attempts before locking out the user.
|
|
3269
|
+
*/
|
|
3270
|
+
maxLoginAttempts?: pulumi.Input<number>;
|
|
2831
3271
|
/**
|
|
2832
3272
|
* Maximum number of unique repositories a user can download in the specified time period before they are banned. Maximum: 10,000 repositories. Introduced in GitLab 15.1.
|
|
2833
3273
|
*/
|
|
@@ -2877,10 +3317,22 @@ export interface ApplicationSettingsArgs {
|
|
|
2877
3317
|
* Use npmjs.org as a default remote repository when the package is not found in the GitLab Package Registry for npm.
|
|
2878
3318
|
*/
|
|
2879
3319
|
npmPackageRequestsForwarding?: pulumi.Input<boolean>;
|
|
3320
|
+
/**
|
|
3321
|
+
* Indicates whether to skip metadata URL validation for the NuGet package. Introduced in GitLab 17.0.
|
|
3322
|
+
*/
|
|
3323
|
+
nugetSkipMetadataUrlValidation?: pulumi.Input<boolean>;
|
|
2880
3324
|
/**
|
|
2881
3325
|
* Define a list of trusted domains or IP addresses to which local requests are allowed when local requests for hooks and services are disabled.
|
|
2882
3326
|
*/
|
|
2883
3327
|
outboundLocalRequestsWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3328
|
+
/**
|
|
3329
|
+
* List of package registry metadata to sync. See the list of the available values (https://gitlab.com/gitlab-org/gitlab/-/blob/ace16c20d5da7c4928dd03fb139692638b557fe3/app/models/concerns/enums/package_metadata.rb#L5). Self-managed, Ultimate only.
|
|
3330
|
+
*/
|
|
3331
|
+
packageMetadataPurlTypes?: pulumi.Input<pulumi.Input<number>[]>;
|
|
3332
|
+
/**
|
|
3333
|
+
* Enable to allow anyone to pull from Package Registry visible and changeable.
|
|
3334
|
+
*/
|
|
3335
|
+
packageRegistryAllowAnyoneToPullOption?: pulumi.Input<boolean>;
|
|
2884
3336
|
/**
|
|
2885
3337
|
* Number of workers assigned to the packages cleanup policies.
|
|
2886
3338
|
*/
|
|
@@ -2941,6 +3393,14 @@ export interface ApplicationSettingsArgs {
|
|
|
2941
3393
|
* Enable project export.
|
|
2942
3394
|
*/
|
|
2943
3395
|
projectExportEnabled?: pulumi.Input<boolean>;
|
|
3396
|
+
/**
|
|
3397
|
+
* Maximum authenticated requests to /project/:id/jobs per minute. Introduced in GitLab 16.5.
|
|
3398
|
+
*/
|
|
3399
|
+
projectJobsApiRateLimit?: pulumi.Input<number>;
|
|
3400
|
+
/**
|
|
3401
|
+
* Introduced in GitLab 15.10. Max number of requests per 10 minutes per IP address for unauthenticated requests to the list all projects API. To disable throttling set to 0.
|
|
3402
|
+
*/
|
|
3403
|
+
projectsApiRateLimitUnauthenticated?: pulumi.Input<number>;
|
|
2944
3404
|
/**
|
|
2945
3405
|
* Enable Prometheus metrics.
|
|
2946
3406
|
*/
|
|
@@ -2985,6 +3445,14 @@ export interface ApplicationSettingsArgs {
|
|
|
2985
3445
|
* Maximum push size (MB).
|
|
2986
3446
|
*/
|
|
2987
3447
|
receiveMaxInputSize?: pulumi.Input<number>;
|
|
3448
|
+
/**
|
|
3449
|
+
* Enable receptive mode for GitLab Agents for Kubernetes.
|
|
3450
|
+
*/
|
|
3451
|
+
receptiveClusterAgentsEnabled?: pulumi.Input<boolean>;
|
|
3452
|
+
/**
|
|
3453
|
+
* Enable Remember me setting. Introduced in GitLab 16.0.
|
|
3454
|
+
*/
|
|
3455
|
+
rememberMeEnabled?: pulumi.Input<boolean>;
|
|
2988
3456
|
/**
|
|
2989
3457
|
* GitLab periodically runs git fsck in all project and wiki repositories to look for silent disk corruption issues.
|
|
2990
3458
|
*/
|
|
@@ -3007,6 +3475,14 @@ export interface ApplicationSettingsArgs {
|
|
|
3007
3475
|
* When enabled, any user that signs up for an account using the registration form is placed under a Pending approval state and has to be explicitly approved by an administrator.
|
|
3008
3476
|
*/
|
|
3009
3477
|
requireAdminApprovalAfterUserSignup?: pulumi.Input<boolean>;
|
|
3478
|
+
/**
|
|
3479
|
+
* Allow administrators to require 2FA for all administrators on the instance.
|
|
3480
|
+
*/
|
|
3481
|
+
requireAdminTwoFactorAuthentication?: pulumi.Input<boolean>;
|
|
3482
|
+
/**
|
|
3483
|
+
* When enabled, users must set an expiration date when creating a group or project access token, or a personal access token owned by a non-service account.
|
|
3484
|
+
*/
|
|
3485
|
+
requirePersonalAccessTokenExpiry?: pulumi.Input<boolean>;
|
|
3010
3486
|
/**
|
|
3011
3487
|
* (If enabled, requires: two*factor*grace_period) Require all users to set up Two-factor authentication.
|
|
3012
3488
|
*/
|
|
@@ -3027,10 +3503,26 @@ export interface ApplicationSettingsArgs {
|
|
|
3027
3503
|
* Max number of requests per minute for performing a search while unauthenticated. To disable throttling set to 0.
|
|
3028
3504
|
*/
|
|
3029
3505
|
searchRateLimitUnauthenticated?: pulumi.Input<number>;
|
|
3506
|
+
/**
|
|
3507
|
+
* Maximum number of active merge request approval policies per security policy project. Maximum: 20
|
|
3508
|
+
*/
|
|
3509
|
+
securityApprovalPoliciesLimit?: pulumi.Input<number>;
|
|
3510
|
+
/**
|
|
3511
|
+
* Whether to look up merge request approval policy approval groups globally or within project hierarchies.
|
|
3512
|
+
*/
|
|
3513
|
+
securityPolicyGlobalGroupApproversEnabled?: pulumi.Input<boolean>;
|
|
3514
|
+
/**
|
|
3515
|
+
* Public security contact information. Introduced in GitLab 16.7.
|
|
3516
|
+
*/
|
|
3517
|
+
securityTxtContent?: pulumi.Input<string>;
|
|
3030
3518
|
/**
|
|
3031
3519
|
* Send confirmation email on sign-up.
|
|
3032
3520
|
*/
|
|
3033
3521
|
sendUserConfirmationEmail?: pulumi.Input<boolean>;
|
|
3522
|
+
/**
|
|
3523
|
+
* Flag to indicate if token expiry date can be optional for service account users
|
|
3524
|
+
*/
|
|
3525
|
+
serviceAccessTokensExpirationEnforced?: pulumi.Input<boolean>;
|
|
3034
3526
|
/**
|
|
3035
3527
|
* Session duration in minutes. GitLab restart is required to apply changes.
|
|
3036
3528
|
*/
|
|
@@ -3067,6 +3559,14 @@ export interface ApplicationSettingsArgs {
|
|
|
3067
3559
|
* Enable registration.
|
|
3068
3560
|
*/
|
|
3069
3561
|
signupEnabled?: pulumi.Input<boolean>;
|
|
3562
|
+
/**
|
|
3563
|
+
* Enable Silent admin exports.
|
|
3564
|
+
*/
|
|
3565
|
+
silentAdminExportsEnabled?: pulumi.Input<boolean>;
|
|
3566
|
+
/**
|
|
3567
|
+
* Enable Silent mode.
|
|
3568
|
+
*/
|
|
3569
|
+
silentModeEnabled?: pulumi.Input<boolean>;
|
|
3070
3570
|
/**
|
|
3071
3571
|
* (If enabled, requires: slack*app*id, slack*app*secret and slack*app*secret) Enable Slack app.
|
|
3072
3572
|
*/
|
|
@@ -3103,6 +3603,10 @@ export interface ApplicationSettingsArgs {
|
|
|
3103
3603
|
* The Snowplow cookie domain. (for example, .gitlab.com)
|
|
3104
3604
|
*/
|
|
3105
3605
|
snowplowCookieDomain?: pulumi.Input<string>;
|
|
3606
|
+
/**
|
|
3607
|
+
* The Snowplow collector for database events hostname. (for example, db-snowplow.trx.gitlab.net)
|
|
3608
|
+
*/
|
|
3609
|
+
snowplowDatabaseCollectorHostname?: pulumi.Input<string>;
|
|
3106
3610
|
/**
|
|
3107
3611
|
* Enable snowplow tracking.
|
|
3108
3612
|
*/
|
|
@@ -3131,6 +3635,14 @@ export interface ApplicationSettingsArgs {
|
|
|
3131
3635
|
* URL of the external Spamcheck service endpoint. Valid URI schemes are grpc or tls. Specifying tls forces communication to be encrypted.
|
|
3132
3636
|
*/
|
|
3133
3637
|
spamCheckEndpointUrl?: pulumi.Input<string>;
|
|
3638
|
+
/**
|
|
3639
|
+
* Authentication token for the external storage linked in static*objects*external*storage*url.
|
|
3640
|
+
*/
|
|
3641
|
+
staticObjectsExternalStorageAuthToken?: pulumi.Input<string>;
|
|
3642
|
+
/**
|
|
3643
|
+
* URL to an external storage for repository static objects.
|
|
3644
|
+
*/
|
|
3645
|
+
staticObjectsExternalStorageUrl?: pulumi.Input<string>;
|
|
3134
3646
|
/**
|
|
3135
3647
|
* Enable pipeline suggestion banner.
|
|
3136
3648
|
*/
|
|
@@ -3223,6 +3735,10 @@ export interface ApplicationSettingsArgs {
|
|
|
3223
3735
|
* Amount of time (in hours) that users are allowed to skip forced configuration of two-factor authentication.
|
|
3224
3736
|
*/
|
|
3225
3737
|
twoFactorGracePeriod?: pulumi.Input<number>;
|
|
3738
|
+
/**
|
|
3739
|
+
* Specifies how many days after sign-up to delete users who have not confirmed their email. Only applicable if delete*unconfirmed*users is set to true. Must be 1 or greater. Introduced in GitLab 16.1. Self-managed, Premium and Ultimate only.
|
|
3740
|
+
*/
|
|
3741
|
+
unconfirmedUsersDeleteAfterDays?: pulumi.Input<number>;
|
|
3226
3742
|
/**
|
|
3227
3743
|
* (If enabled, requires: unique*ips*limit*per*user and unique*ips*limit*time*window) Limit sign in from multiple IPs.
|
|
3228
3744
|
*/
|
|
@@ -3235,10 +3751,18 @@ export interface ApplicationSettingsArgs {
|
|
|
3235
3751
|
* How many seconds an IP is counted towards the limit.
|
|
3236
3752
|
*/
|
|
3237
3753
|
uniqueIpsLimitTimeWindow?: pulumi.Input<number>;
|
|
3754
|
+
/**
|
|
3755
|
+
* Fetch GitLab Runner release version data from GitLab.com.
|
|
3756
|
+
*/
|
|
3757
|
+
updateRunnerVersionsEnabled?: pulumi.Input<boolean>;
|
|
3238
3758
|
/**
|
|
3239
3759
|
* Every week GitLab reports license usage back to GitLab, Inc.
|
|
3240
3760
|
*/
|
|
3241
3761
|
usagePingEnabled?: pulumi.Input<boolean>;
|
|
3762
|
+
/**
|
|
3763
|
+
* Enables ClickHouse as a data source for analytics reports. ClickHouse must be configured for this setting to take effect. Available on Premium and Ultimate only.
|
|
3764
|
+
*/
|
|
3765
|
+
useClickhouseForAnalytics?: pulumi.Input<boolean>;
|
|
3242
3766
|
/**
|
|
3243
3767
|
* Send an email to users upon account deactivation.
|
|
3244
3768
|
*/
|
|
@@ -3251,6 +3775,10 @@ export interface ApplicationSettingsArgs {
|
|
|
3251
3775
|
* Specify an email address regex pattern to identify default internal users.
|
|
3252
3776
|
*/
|
|
3253
3777
|
userDefaultInternalRegex?: pulumi.Input<string>;
|
|
3778
|
+
/**
|
|
3779
|
+
* Newly created users have private profile by default. Introduced in GitLab 15.8.
|
|
3780
|
+
*/
|
|
3781
|
+
userDefaultsToPrivateProfile?: pulumi.Input<boolean>;
|
|
3254
3782
|
/**
|
|
3255
3783
|
* Allow users to register any application to use GitLab as an OAuth provider.
|
|
3256
3784
|
*/
|
|
@@ -3259,6 +3787,10 @@ export interface ApplicationSettingsArgs {
|
|
|
3259
3787
|
* When set to false disable the You won't be able to pull or push project code via SSH warning shown to users with no uploaded SSH key.
|
|
3260
3788
|
*/
|
|
3261
3789
|
userShowAddSshKeyMessage?: pulumi.Input<boolean>;
|
|
3790
|
+
/**
|
|
3791
|
+
* List of types which are allowed to register a GitLab Runner. Can be [], ['group'], ['project'] or ['group', 'project'].
|
|
3792
|
+
*/
|
|
3793
|
+
validRunnerRegistrars?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3262
3794
|
/**
|
|
3263
3795
|
* Let GitLab inform you when an update is available.
|
|
3264
3796
|
*/
|
|
@@ -3268,7 +3800,7 @@ export interface ApplicationSettingsArgs {
|
|
|
3268
3800
|
*/
|
|
3269
3801
|
webIdeClientsidePreviewEnabled?: pulumi.Input<boolean>;
|
|
3270
3802
|
/**
|
|
3271
|
-
* What
|
|
3803
|
+
* What's new variant, possible values: all*tiers, current*tier, and disabled.
|
|
3272
3804
|
*/
|
|
3273
3805
|
whatsNewVariant?: pulumi.Input<string>;
|
|
3274
3806
|
/**
|