This repository was archived by the owner on Aug 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-13
lines changed Expand file tree Collapse file tree 2 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -14,23 +14,13 @@ class NoCodePlugin {
14
14
const template = this . serverless . service . provider . compiledCloudFormationTemplate ;
15
15
16
16
var deploymentBucket = template . Resources . ServerlessDeploymentBucket ;
17
+ var deploymentBucketOutput = template . Outputs . ServerlessDeploymentBucketName ;
17
18
var resources = {
18
- "NoCode" : {
19
- "Type" : "Custom::NoCode" ,
20
- "Version" : "1.0.0" ,
21
- "Properties" : {
22
- "ServiceToken" : "arn:aws:lambda:us-east-1:349603509961:function:aws-nocode-tracker-prime-NoCodeTracker"
23
- }
24
- } ,
25
19
"ServerlessDeploymentBucket" : deploymentBucket
26
20
} ;
27
21
28
22
var outputs = {
29
- "ServerlessDeploymentBucketName" : {
30
- "Value" : {
31
- "Ref" : "ServerlessDeploymentBucket"
32
- }
33
- }
23
+ "ServerlessDeploymentBucketName" : deploymentBucketOutput
34
24
} ;
35
25
36
26
template . Resources = resources ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " serverless-nocode" ,
3
3
"description" : " Deploys nocode via Serverless Framework" ,
4
- "version" : " 0.0.2 " ,
4
+ "version" : " 0.0.3 " ,
5
5
"author" : " ServerlessOps" ,
6
6
"license" : " MIT" ,
7
7
"repository" : {
You can’t perform that action at this time.
0 commit comments