Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Lower terraform module limits
Browse files Browse the repository at this point in the history
Github enforces a 100 character limit!
  • Loading branch information
izaaklauer committed Jun 20, 2023
1 parent 96252ad commit 60be0a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/server/ptypes/project_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const (
PROJECT_TEMPLATE_README_LENGTH = 1024 ^ 2
PROJECT_TEMPLATE_WAYPOINT_HCL_LENGTH = 1024 ^ 2

TERRAFORM_NOCODE_MODULE_SOURCE_LENGTH = 4096
TERRAFORM_NOCODE_MODULE_VERSION_LENGTH = 1024
TERRAFORM_NOCODE_MODULE_SOURCE_LENGTH = 256
TERRAFORM_NOCODE_MODULE_VERSION_LENGTH = 256
)

func TestProjectTemplate(t testing.T, src *pb.ProjectTemplate) *pb.ProjectTemplate {
Expand Down

0 comments on commit 60be0a1

Please sign in to comment.