Colin Panisset

Add note about not requiring a profile if creds are in the environment

...@@ -40,6 +40,9 @@ Where ``command`` is one of: ...@@ -40,6 +40,9 @@ Where ``command`` is one of:
40 The ``config file`` is a YAML format file containing all of the information 40 The ``config file`` is a YAML format file containing all of the information
41 about your Lambda function. 41 about your Lambda function.
42 42
43 +If you use environment variables for your AWS credentials (as normally supported by boto),
44 +simply exclude the ``profile`` element from the YAML file.
45 +
43 An example project based on a Kinesis stream can be found in 46 An example project based on a Kinesis stream can be found in
44 [samples/kinesis](https://github.com/garnaat/kappa/tree/develop/samples/kinesis). 47 [samples/kinesis](https://github.com/garnaat/kappa/tree/develop/samples/kinesis).
45 48
...@@ -56,4 +59,4 @@ The basic workflow is: ...@@ -56,4 +59,4 @@ The basic workflow is:
56 * Run ``kappa --config <path-to-config> tail`` to see more output 59 * Run ``kappa --config <path-to-config> tail`` to see more output
57 60
58 If you have to make changes in your function or in your IAM roles, simply run 61 If you have to make changes in your function or in your IAM roles, simply run
59 -``kappa deploy`` again and the changes will be uploaded as necessary.
...\ No newline at end of file ...\ No newline at end of file
62 +``kappa deploy`` again and the changes will be uploaded as necessary.
......