Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #302 from dtan4/prepare-v0.13.0
Browse files Browse the repository at this point in the history
Prepare for v0.13.0 release
  • Loading branch information
dtan4 committed Jan 12, 2017
2 parents 628755c + 78161c6 commit 5e61e95
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,15 @@
# [v0.12.0](https://github.com/dtan4/terraforming/releases/tag/v0.11.0) (2016-12-20)
# [v0.13.0](https://github.com/dtan4/terraforming/releases/tag/v0.13.0) (2017-01-12)

## Resource

- AWS KMS Key Alias [#300](https://github.com/dtan4/terraforming/pull/300)
- AWS KMS Key [#299](https://github.com/dtan4/terraforming/pull/299)

## Fixed / Updated

- Normalize all resource names in tf and tfstate files [#296](https://github.com/dtan4/terraforming/pull/296) (thanks @nabarunchatterjee)

# [v0.12.0](https://github.com/dtan4/terraforming/releases/tag/v0.12.0) (2016-12-20)

## Resource

Expand Down
15 changes: 9 additions & 6 deletions README.md
Expand Up @@ -100,6 +100,8 @@ Commands:
terraforming iamu # IAM User
terraforming iamup # IAM User Policy
terraforming igw # Internet Gateway
terraforming kmsa # KMS Key Alias
terraforming kmsk # KMS Key
terraforming lc # Launch Configuration
terraforming nacl # Network ACL
terraforming nat # NAT Gateway
Expand All @@ -118,11 +120,12 @@ Commands:
terraforming vpc # VPC

Options:
[--merge=MERGE] # tfstate file to merge
[--overwrite], [--no-overwrite] # Overwrite existng tfstate
[--tfstate], [--no-tfstate] # Generate tfstate
[--profile=PROFILE] # AWS credentials profile
[--region=REGION] # AWS region
[--merge=MERGE] # tfstate file to merge
[--overwrite], [--no-overwrite] # Overwrite existng tfstate
[--tfstate], [--no-tfstate] # Generate tfstate
[--profile=PROFILE] # AWS credentials profile
[--region=REGION] # AWS region
[--use-bundled-cert], [--no-use-bundled-cert] # Use the bundled CA certificate from AWS SDK
```

### Export tf
Expand All @@ -137,7 +140,7 @@ $ terraforming <resource> [--profile PROFILE]
$ terraforming s3
```

```go
```hcl
resource "aws_s3_bucket" "hoge" {
bucket = "hoge"
acl = "private"
Expand Down
2 changes: 1 addition & 1 deletion lib/terraforming/version.rb
@@ -1,3 +1,3 @@
module Terraforming
VERSION = "0.12.0"
VERSION = "0.13.0"
end

0 comments on commit 5e61e95

Please sign in to comment.