forked from aws-ia/cloudformation-gitlab-resource-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yml
More file actions
24 lines (20 loc) · 774 Bytes
/
template.yml
File metadata and controls
24 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: AWS SAM template for the GitLab::Projects::Project resource type
Globals:
Function:
Timeout: 180 # docker start-up times can be long for SAM CLI
MemorySize: 512
Resources:
TypeFunction:
Type: AWS::Serverless::Function
Properties:
Handler: com.gitlab.aws.cfn.resources.projects.project.HandlerWrapper::handleRequest
Runtime: java8
CodeUri: ./target/gitlab-projects-project-1.0.0-SNAPSHOT.jar
TestEntrypoint:
Type: AWS::Serverless::Function
Properties:
Handler: com.gitlab.aws.cfn.resources.projects.project.HandlerWrapper::testEntrypoint
Runtime: java8
CodeUri: ./target/gitlab-projects-project-1.0.0-SNAPSHOT.jar