Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
marcy-terui committed Dec 10, 2015
1 parent 3fd1f05 commit 7ca52c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
## 0.3.0

- Support jinja2 template in configuration file [#15]()

## 0.2.0

- Change default name of the configuration file to '.lamvery.yml'
- Change format of the configuration file (See: [README]())
- Change format of the configuration file (See: [README](https://github.com/marcy-terui/lamvery/blob/master/README.md#setup))
- Support passing some confidential information using KMS [#8]()
- Add `encrypt` command
- Add `decrypt` command
Expand Down Expand Up @@ -44,4 +48,4 @@
[#8]: https://github.com/marcy-terui/lamvery/issues/8
[#9]: https://github.com/marcy-terui/lamvery/issues/9
[#10]: https://github.com/marcy-terui/lamvery/issues/10
[README]: https://github.com/marcy-terui/lamvery/blob/master/README.rst
[#15]: https://github.com/marcy-terui/lamvery/issues/15
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,22 @@ At first,
lamvery init
```

And put your `lamvery.yml` like this.
And put your `.lamvery.yml` like this.
The configuration is written in YAML syntax with `jinja2` template.

```yml
profile: default
region: us-east-1
configuration:
name: sample_lambda_function
runtime: python2.7
role: arn:aws:iam::000000000000:role/lambda_basic_execution
role: {{ env['AWS_LAMBDA_ROLE'] }}
handler: lambda_function.lambda_handler
description: This is sample lambda function.
timeout: 10
memory_size: 128
secret:
key: xxxx-yyyy-zzzz
key: {{ env['AWS_KMS_KEY_ID'] }}
cipher_texts:
foo: !!binary |
fsdiugfhaeiotgheat+d9yJMyY1uw1i7tYVvQz9I8+e2UBKTAQEBAgB4uMVvZYOx2sWrnnjfnfci
Expand Down Expand Up @@ -107,7 +109,7 @@ Alias for a version of the function.
- `-c` or `--conf-file`
This option needed by all commands.
Specify the configuration file.
default: `lamvery.yml`
default: `.lamvery.yml`

- `-d` or `--dry-run`
This option needed by `deploy` and `alias` commands.
Expand Down
2 changes: 1 addition & 1 deletion lamvery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
----
Yet another deploy tool for AWS Lambda in the virtualenv environment.
"""
__version__ = '0.2.0'
__version__ = '0.3.0'

0 comments on commit 7ca52c8

Please sign in to comment.