File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,29 @@ on upmsync.yaml, the job 'upload_aws' illustrates a possible way to upload your
37
37
Requires a service account to enable it to upload.
38
38
> You need to set the template 'cloudformation_function.yaml' public in your bucket repository to enable AWS::Stack to read from it.
39
39
40
+ # Implementation
41
+
42
+ ## GCP Troubleshoot
43
+
44
+ > My function is returning ErrorProtocol for any input.
45
+ if you don't give access public for your function it might fail
46
+
47
+ ## AWS Troubleshoot
48
+ > CloudFormation is returning errors
49
+
50
+ Verify all variables, !Ref and links, you might be forgetting something. CloudFormations is very sensitive to linkage errors.
51
+
52
+ > My lambda is returning error 500 Internal Server error.
53
+ If you are receiving this and error object is returning null, it might be a bad configuration causing your lambda to not run.
54
+ Verify if you function is running by adding a fmt.Println("test") at main() function to ensure the function is starting.
55
+ Some issues that may prevent the start of function:
56
+ - The functions ins't at correct path when extracted from the zip.
57
+ - The function package name isn't main where main() function is declared.
58
+ - lambda.Start() is never begin called to initialize the function.
59
+ - The function is crashing upon initialization
60
+
61
+ If the function is working normally, them you might receive error 500 - ErrorInternalServer with AWSError, when specified by the programmer.
62
+
40
63
# Contributions
41
64
42
65
If you are using this library and want to submit a change, go ahead! Overall, this project accepts contributions if:
You can’t perform that action at this time.
0 commit comments