Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
6b845ad7
Commit
6b845ad7
authored
Mar 11, 2021
by
Matt Kasa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add plan limit for Terraform Module package file size
Relates to
https://gitlab.com/gitlab-org/gitlab/-/issues/321102
parent
8d0ec9fb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
changelogs/unreleased/321102-terraform-module-registry-iteration-1.yml
...released/321102-terraform-module-registry-iteration-1.yml
+5
-0
db/migrate/20210305145622_add_terraform_module_max_file_size_to_plan_limits.rb
...5622_add_terraform_module_max_file_size_to_plan_limits.rb
+9
-0
db/schema_migrations/20210305145622
db/schema_migrations/20210305145622
+1
-0
db/structure.sql
db/structure.sql
+2
-1
No files found.
changelogs/unreleased/321102-terraform-module-registry-iteration-1.yml
0 → 100644
View file @
6b845ad7
---
title
:
Add plan limit for Terraform Module package file size
merge_request
:
56414
author
:
type
:
added
db/migrate/20210305145622_add_terraform_module_max_file_size_to_plan_limits.rb
0 → 100644
View file @
6b845ad7
# frozen_string_literal: true
class
AddTerraformModuleMaxFileSizeToPlanLimits
<
ActiveRecord
::
Migration
[
6.0
]
DOWNTIME
=
false
def
change
add_column
:plan_limits
,
:terraform_module_max_file_size
,
:bigint
,
default:
1
.
gigabyte
,
null:
false
end
end
db/schema_migrations/20210305145622
0 → 100644
View file @
6b845ad7
be22d5a1c61cbb8b2396a351951ffcee54fbf37dc5ef5f899576a36a14200e75
\ No newline at end of file
db/structure.sql
View file @
6b845ad7
...
@@ -15754,7 +15754,8 @@ CREATE TABLE plan_limits (
...
@@ -15754,7 +15754,8 @@ CREATE TABLE plan_limits (
ci_pipeline_deployments integer DEFAULT 500 NOT NULL,
ci_pipeline_deployments integer DEFAULT 500 NOT NULL,
pull_mirror_interval_seconds integer DEFAULT 300 NOT NULL,
pull_mirror_interval_seconds integer DEFAULT 300 NOT NULL,
daily_invites integer DEFAULT 0 NOT NULL,
daily_invites integer DEFAULT 0 NOT NULL,
rubygems_max_file_size bigint DEFAULT '3221225472'::bigint NOT NULL
rubygems_max_file_size bigint DEFAULT '3221225472'::bigint NOT NULL,
terraform_module_max_file_size bigint DEFAULT 1073741824 NOT NULL
);
);
CREATE SEQUENCE plan_limits_id_seq
CREATE SEQUENCE plan_limits_id_seq
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment