Showing
1 changed file
with
14 additions
and
6 deletions
... | @@ -22,12 +22,12 @@ in a Push model (e.g. S3, SNS) rather than a Pull model. | ... | @@ -22,12 +22,12 @@ in a Push model (e.g. S3, SNS) rather than a Pull model. |
22 | * Add an event source to the function | 22 | * Add an event source to the function |
23 | * View the output of the live function | 23 | * View the output of the live function |
24 | 24 | ||
25 | -Kappa tries to help you with some of this. It allows you to create an IAM | 25 | +Kappa tries to help you with some of this. It creates all IAM policies for you |
26 | -managed policy or use an existing one. It creates the IAM execution role for | 26 | +based on the resources you have told it you need to access. It creates the IAM |
27 | -you and associates the policy with it. Kappa will zip up the function and | 27 | +execution role for you and associates the policy with it. Kappa will zip up |
28 | -any dependencies and upload them to AWS Lambda. It also sends test data | 28 | +the function and any dependencies and upload them to AWS Lambda. It also sends |
29 | -to the uploaded function and finds the related CloudWatch log stream and | 29 | +test data to the uploaded function and finds the related CloudWatch log stream |
30 | -displays the log events. Finally, it will add the event source to turn | 30 | +and displays the log events. Finally, it will add the event source to turn |
31 | your function on. | 31 | your function on. |
32 | 32 | ||
33 | If you need to make changes, kappa will allow you to easily update your Lambda | 33 | If you need to make changes, kappa will allow you to easily update your Lambda |
... | @@ -194,5 +194,13 @@ function that prints out the ``event`` (the data) passed to the function. And | ... | @@ -194,5 +194,13 @@ function that prints out the ``event`` (the data) passed to the function. And |
194 | finally, we can see the Response from the function which, for now, is just a | 194 | finally, we can see the Response from the function which, for now, is just a |
195 | hard-coded data structure returned by the function. | 195 | hard-coded data structure returned by the function. |
196 | 196 | ||
197 | +Need to make a change in your function, your list of resources, or your | ||
198 | +function configuration? Just go ahead and make the change and then re-run the | ||
199 | +``deploy`` command: | ||
200 | + | ||
201 | + $ kappa deploy | ||
202 | + | ||
203 | +Kappa will figure out what has changed and make the necessary updates for you. | ||
204 | + | ||
197 | That gives you a quick overview of kappa. To learn more about it, I recommend | 205 | That gives you a quick overview of kappa. To learn more about it, I recommend |
198 | you check out the tutorial. | 206 | you check out the tutorial. | ... | ... |
-
Please register or login to post a comment