aws-insight 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.rubocop.yml +84 -0
- data/.travis.yml +19 -0
- data/CHANGELOG.md +336 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/CONTRIBUTING.md +62 -0
- data/Gemfile +19 -0
- data/Guardfile +12 -0
- data/LICENSE +22 -0
- data/README.md +393 -0
- data/Rakefile +6 -0
- data/bin/terraforming +5 -0
- data/contrib/zsh-completion/_terraforming +65 -0
- data/lib/terraforming.rb +54 -0
- data/lib/terraforming/cli.rb +340 -0
- data/lib/terraforming/resource/alb.rb +98 -0
- data/lib/terraforming/resource/auto_scaling_group.rb +90 -0
- data/lib/terraforming/resource/cloud_watch_alarm.rb +87 -0
- data/lib/terraforming/resource/config.rb +98 -0
- data/lib/terraforming/resource/db_parameter_group.rb +58 -0
- data/lib/terraforming/resource/db_security_group.rb +57 -0
- data/lib/terraforming/resource/db_subnet_group.rb +52 -0
- data/lib/terraforming/resource/ec2.rb +130 -0
- data/lib/terraforming/resource/efs_file_system.rb +60 -0
- data/lib/terraforming/resource/eip.rb +66 -0
- data/lib/terraforming/resource/elasti_cache_cluster.rb +80 -0
- data/lib/terraforming/resource/elasti_cache_subnet_group.rb +56 -0
- data/lib/terraforming/resource/elb.rb +203 -0
- data/lib/terraforming/resource/iam_group.rb +54 -0
- data/lib/terraforming/resource/iam_group_membership.rb +63 -0
- data/lib/terraforming/resource/iam_group_policy.rb +71 -0
- data/lib/terraforming/resource/iam_instance_profile.rb +54 -0
- data/lib/terraforming/resource/iam_policy.rb +63 -0
- data/lib/terraforming/resource/iam_policy_attachment.rb +86 -0
- data/lib/terraforming/resource/iam_role.rb +56 -0
- data/lib/terraforming/resource/iam_role_policy.rb +71 -0
- data/lib/terraforming/resource/iam_user.rb +55 -0
- data/lib/terraforming/resource/iam_user_policy.rb +71 -0
- data/lib/terraforming/resource/internet_gateway.rb +54 -0
- data/lib/terraforming/resource/kms_alias.rb +55 -0
- data/lib/terraforming/resource/kms_key.rb +84 -0
- data/lib/terraforming/resource/launch_configuration.rb +106 -0
- data/lib/terraforming/resource/nat_gateway.rb +57 -0
- data/lib/terraforming/resource/network_acl.rb +83 -0
- data/lib/terraforming/resource/network_interface.rb +68 -0
- data/lib/terraforming/resource/rds.rb +74 -0
- data/lib/terraforming/resource/redshift.rb +67 -0
- data/lib/terraforming/resource/route53_record.rb +106 -0
- data/lib/terraforming/resource/route53_zone.rb +89 -0
- data/lib/terraforming/resource/route_table.rb +122 -0
- data/lib/terraforming/resource/route_table_association.rb +59 -0
- data/lib/terraforming/resource/s3.rb +69 -0
- data/lib/terraforming/resource/security_group.rb +188 -0
- data/lib/terraforming/resource/sns_topic.rb +75 -0
- data/lib/terraforming/resource/sns_topic_subscription.rb +83 -0
- data/lib/terraforming/resource/sqs.rb +70 -0
- data/lib/terraforming/resource/subnet.rb +55 -0
- data/lib/terraforming/resource/vpc.rb +67 -0
- data/lib/terraforming/resource/vpn_gateway.rb +55 -0
- data/lib/terraforming/template/tf/alb.erb +28 -0
- data/lib/terraforming/template/tf/auto_scaling_group.erb +28 -0
- data/lib/terraforming/template/tf/cloud_watch_alarm.erb +33 -0
- data/lib/terraforming/template/tf/db_parameter_group.erb +17 -0
- data/lib/terraforming/template/tf/db_security_group.erb +26 -0
- data/lib/terraforming/template/tf/db_subnet_group.erb +8 -0
- data/lib/terraforming/template/tf/ec2.erb +56 -0
- data/lib/terraforming/template/tf/eip.erb +11 -0
- data/lib/terraforming/template/tf/elasti_cache_cluster.erb +22 -0
- data/lib/terraforming/template/tf/elasti_cache_subnet_group.erb +8 -0
- data/lib/terraforming/template/tf/elastic_filesystem.erb +18 -0
- data/lib/terraforming/template/tf/elb.erb +51 -0
- data/lib/terraforming/template/tf/iam_group.erb +7 -0
- data/lib/terraforming/template/tf/iam_group_membership.erb +8 -0
- data/lib/terraforming/template/tf/iam_group_policy.erb +10 -0
- data/lib/terraforming/template/tf/iam_instance_profile.erb +8 -0
- data/lib/terraforming/template/tf/iam_policy.erb +12 -0
- data/lib/terraforming/template/tf/iam_policy_attachment.erb +10 -0
- data/lib/terraforming/template/tf/iam_role.erb +10 -0
- data/lib/terraforming/template/tf/iam_role_policy.erb +10 -0
- data/lib/terraforming/template/tf/iam_user.erb +7 -0
- data/lib/terraforming/template/tf/iam_user_policy.erb +10 -0
- data/lib/terraforming/template/tf/internet_gateway.erb +14 -0
- data/lib/terraforming/template/tf/kms_alias.erb +7 -0
- data/lib/terraforming/template/tf/kms_key.erb +13 -0
- data/lib/terraforming/template/tf/launch_configuration.erb +68 -0
- data/lib/terraforming/template/tf/nat_gateway.erb +9 -0
- data/lib/terraforming/template/tf/network_acl.erb +43 -0
- data/lib/terraforming/template/tf/network_interface.erb +22 -0
- data/lib/terraforming/template/tf/rds.erb +25 -0
- data/lib/terraforming/template/tf/redshift.erb +23 -0
- data/lib/terraforming/template/tf/route53_record.erb +52 -0
- data/lib/terraforming/template/tf/route53_zone.erb +18 -0
- data/lib/terraforming/template/tf/route_table.erb +34 -0
- data/lib/terraforming/template/tf/route_table_association.erb +9 -0
- data/lib/terraforming/template/tf/s3.erb +12 -0
- data/lib/terraforming/template/tf/security_group.erb +56 -0
- data/lib/terraforming/template/tf/sns_topic.erb +17 -0
- data/lib/terraforming/template/tf/sns_topic_subscription.erb +23 -0
- data/lib/terraforming/template/tf/sqs.erb +21 -0
- data/lib/terraforming/template/tf/subnet.erb +15 -0
- data/lib/terraforming/template/tf/vpc.erb +15 -0
- data/lib/terraforming/template/tf/vpn_gateway.erb +14 -0
- data/lib/terraforming/util.rb +30 -0
- data/lib/terraforming/version.rb +3 -0
- data/script/console +14 -0
- data/script/generate +97 -0
- data/script/setup +7 -0
- data/templates/resource.erb.erb +3 -0
- data/templates/resource.rb.erb +31 -0
- data/templates/resource_spec.rb.erb +39 -0
- data/terraforming.gemspec +31 -0
- metadata +271 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2f726c7e9c3be470595fe90f07a6a93104729a10
|
4
|
+
data.tar.gz: cb6b1c1b8939fb2263bff3a7ec331f9de4e85a76
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8b047737bd7c4b073551dfa5a39ef5f118939d450b9cc87900a5617e88f5f39150c6a3f797560250a3d31a3cf7f760ba66aec37887e7fcbf8e237a59197145c3
|
7
|
+
data.tar.gz: f2fc9aac76fdd5dab4358be85ee56067e4872932576ef46aa2835ec9d72898c9ce16f403c165a08ba3c7b344970db66fa2b3fec5e13df3c3da42c97dddc8970c
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
Metrics/AbcSize:
|
2
|
+
Enabled: false
|
3
|
+
|
4
|
+
Metrics/ClassLength:
|
5
|
+
Enabled: false
|
6
|
+
|
7
|
+
Metrics/CyclomaticComplexity:
|
8
|
+
Enabled: false
|
9
|
+
|
10
|
+
Metrics/LineLength:
|
11
|
+
Max: 140
|
12
|
+
Exclude:
|
13
|
+
- "spec/**/*"
|
14
|
+
|
15
|
+
# Offense count: 42
|
16
|
+
# Configuration parameters: CountComments.
|
17
|
+
Metrics/MethodLength:
|
18
|
+
Enabled: false
|
19
|
+
|
20
|
+
Metrics/ModuleLength:
|
21
|
+
Enabled: false
|
22
|
+
|
23
|
+
Style/BracesAroundHashParameters:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Style/Documentation:
|
27
|
+
Enabled: false
|
28
|
+
|
29
|
+
Style/EachWithObject:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Style/HashSyntax:
|
33
|
+
Exclude:
|
34
|
+
- 'Rakefile'
|
35
|
+
|
36
|
+
# TODO: check again
|
37
|
+
Style/IndentArray:
|
38
|
+
Enabled: false
|
39
|
+
|
40
|
+
# TODO: check again
|
41
|
+
Style/IndentHash:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
Style/LineEndConcatenation:
|
45
|
+
Enabled: false
|
46
|
+
|
47
|
+
Style/MutableConstant:
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
Style/NumericLiterals:
|
51
|
+
Enabled: false
|
52
|
+
|
53
|
+
Style/ParallelAssignment:
|
54
|
+
Enabled: false
|
55
|
+
|
56
|
+
Style/RedundantSelf:
|
57
|
+
Enabled: false
|
58
|
+
|
59
|
+
# TODO: check again (force to %r literal)
|
60
|
+
Style/RegexpLiteral:
|
61
|
+
Enabled: true
|
62
|
+
|
63
|
+
Style/StringLiterals:
|
64
|
+
Enabled: false
|
65
|
+
|
66
|
+
Style/SymbolProc:
|
67
|
+
Enabled: false
|
68
|
+
|
69
|
+
Style/TrailingCommaInLiteral:
|
70
|
+
Enabled: false
|
71
|
+
|
72
|
+
Style/UnneededPercentQ:
|
73
|
+
Enabled: false
|
74
|
+
|
75
|
+
Style/CollectionMethods:
|
76
|
+
PreferredMethods:
|
77
|
+
collect: "map"
|
78
|
+
collect!: "map!"
|
79
|
+
inject: "inject"
|
80
|
+
detect: "find"
|
81
|
+
find_all: "select"
|
82
|
+
|
83
|
+
Style/PerlBackrefs:
|
84
|
+
Enabled: false
|
data/.travis.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.4.1
|
4
|
+
- 2.3.4
|
5
|
+
- 2.2.7
|
6
|
+
env:
|
7
|
+
global:
|
8
|
+
- secure: n0mxwnyjuXI4mJO4mp++2TnsPJ+XgCF/J1U2L5piE5j3xMhSU+5V0JrA1uFlS0Pemb44M7BjgmF9S4G35BwyAQpctpCYhqy9tFa6+Y6nxEv5hCv2cZz7BSAZM6eb+zq20409hxTHRaQOr1DBeE4R5S2PrmOXRqvYfTRv3LNSLFk=
|
9
|
+
matrix:
|
10
|
+
- OJ=0
|
11
|
+
- OJ=1
|
12
|
+
before_install:
|
13
|
+
- gem update --system
|
14
|
+
- gem update bundler
|
15
|
+
before_script:
|
16
|
+
- if [[ $OJ -eq 1 ]]; then gem install oj; fi
|
17
|
+
notifications:
|
18
|
+
slack:
|
19
|
+
secure: iTI8zpxXQJqf5e9ix4buLRsGlf9lJRZqA9Fawdqm41msBrC0Zsp31XzBS7ZPiTcdHhImtOC4lccTCW2C8kR6waaG5VOF0U2BwyKaNFKsXMaVk6yrNhYkvJ9YVicuU9hL+JKLyBrSDYQ7+vXcHqaz4H4dYpPThrv6sfq4jBOp+eM=
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,336 @@
|
|
1
|
+
# [v0.14.0](https://github.com/dtan4/terraforming/releases/tag/v0.14.0) (2017-08-05)
|
2
|
+
|
3
|
+
## Fixed / Updated
|
4
|
+
|
5
|
+
- Drop Ruby 2.1 from CI [#351](https://github.com/dtan4/terraforming/pull/351)
|
6
|
+
- Add `icmp_code` and `icmp_type` to NACL [#350](https://github.com/dtan4/terraforming/pull/350)
|
7
|
+
- Use aws-sdk [#349](https://github.com/dtan4/terraforming/pull/349)
|
8
|
+
- Rename title of aws_route53_record with wildcard [#348](https://github.com/dtan4/terraforming/pull/348) (thanks @furhouse)
|
9
|
+
- SNS Support [#332](https://github.com/dtan4/terraforming/pull/332) (thanks @uberblah)
|
10
|
+
- `terraforming snst` (SNS Topic), `terraforming snss` (SNS Subscription)
|
11
|
+
- Fix typo in cli.rb [#329](https://github.com/dtan4/terraforming/pull/329) (thanks @slalFe)
|
12
|
+
|
13
|
+
# [v0.13.2](https://github.com/dtan4/terraforming/releases/tag/v0.13.2) (2017-04-20)
|
14
|
+
|
15
|
+
## Fixed / Updated
|
16
|
+
|
17
|
+
- Add prefix lists to security groups configuration [#326](https://github.com/dtan4/terraforming/pull/326) (thanks @julia-stripe)
|
18
|
+
- Support Ruby 2.4 without warnings [#323](https://github.com/dtan4/terraforming/pull/323)
|
19
|
+
- Fix support for EIP in EC2-Classic [#316](https://github.com/dtan4/terraforming/pull/316) (thanks @yn)
|
20
|
+
|
21
|
+
# [v0.13.1](https://github.com/dtan4/terraforming/releases/tag/v0.13.1) (2017-01-23)
|
22
|
+
|
23
|
+
## Fixed / Updated
|
24
|
+
|
25
|
+
- Fixes for route53_records [#303](https://github.com/dtan4/terraforming/pull/303) (thanks @mioi)
|
26
|
+
- use `weighted_routing_policy`
|
27
|
+
- add various routing policy (latency, geolocation)
|
28
|
+
- uniquify resource name
|
29
|
+
|
30
|
+
# [v0.13.0](https://github.com/dtan4/terraforming/releases/tag/v0.13.0) (2017-01-12)
|
31
|
+
|
32
|
+
## Resource
|
33
|
+
|
34
|
+
- AWS KMS Key Alias [#300](https://github.com/dtan4/terraforming/pull/300)
|
35
|
+
- AWS KMS Key [#299](https://github.com/dtan4/terraforming/pull/299)
|
36
|
+
|
37
|
+
## Fixed / Updated
|
38
|
+
|
39
|
+
- Normalize all resource names in tf and tfstate files [#296](https://github.com/dtan4/terraforming/pull/296) (thanks @nabarunchatterjee)
|
40
|
+
|
41
|
+
# [v0.12.0](https://github.com/dtan4/terraforming/releases/tag/v0.12.0) (2016-12-20)
|
42
|
+
|
43
|
+
## Resource
|
44
|
+
|
45
|
+
- AWS ALB [#291](https://github.com/dtan4/terraforming/pull/291)
|
46
|
+
- AWS EFS File System [#283](https://github.com/dtan4/terraforming/pull/283) (thanks @notjames)
|
47
|
+
|
48
|
+
## Fixed / Updated
|
49
|
+
|
50
|
+
- Fix associate_public_ip_address attr for EC2 [#287](https://github.com/dtan4/terraforming/pull/287) (thanks @diwaniuk)
|
51
|
+
|
52
|
+
# [v0.11.0](https://github.com/dtan4/terraforming/releases/tag/v0.11.0) (2016-11-14)
|
53
|
+
|
54
|
+
## Resource
|
55
|
+
|
56
|
+
- AWS CloudWatch alarm [#273](https://github.com/dtan4/terraforming/pull/273) (thanks @eredi93)
|
57
|
+
|
58
|
+
## Fixed / Updated
|
59
|
+
|
60
|
+
- Remove native extension gems and use wrapper gem [#275](https://github.com/dtan4/terraforming/pull/275)
|
61
|
+
- Generate `iops` field only with io1 volume [#271](https://github.com/dtan4/terraforming/pull/271)
|
62
|
+
- Set `force_destroy: false` for IAM users [#267](https://github.com/dtan4/terraforming/pull/267) (thanks @raylu)
|
63
|
+
- Remove commands to delete empty files in export in README.md [#261](https://github.com/dtan4/terraforming/pull/261) (thanks @benmanns)
|
64
|
+
|
65
|
+
# [v0.10.0](https://github.com/dtan4/terraforming/releases/tag/v0.10.0) (2016-08-24)
|
66
|
+
|
67
|
+
## Resource
|
68
|
+
|
69
|
+
- AWS NAT Gateway [#240](https://github.com/dtan4/terraforming/pull/240) (thanks @brianknight10)
|
70
|
+
|
71
|
+
## Fixed / Updated
|
72
|
+
|
73
|
+
- Use the latest Oj (2.17.x) [#257](https://github.com/dtan4/terraforming/pull/257)
|
74
|
+
- Use the latest aws-sdk (2.5.x) [#256](https://github.com/dtan4/terraforming/pull/256)
|
75
|
+
- Attach AWS-scoped IAM policy attachments [#251](https://github.com/dtan4/terraforming/pull/251) (thanks @raylu)
|
76
|
+
- Fix LaunchConfiguration tf result when associate_public_ip_address [#250](https://github.com/dtan4/terraforming/pull/250) (thanks @gotyoooo)
|
77
|
+
- Paginate IAM Group Membership [#248](https://github.com/dtan4/terraforming/pull/248) (thanks @raylu)
|
78
|
+
- Add option to use AWS bundled CA certificate [#246](https://github.com/dtan4/terraforming/pull/246) (thanks @mattgartman)
|
79
|
+
- Fix network_interface naming in EIP [#243](https://github.com/dtan4/terraforming/pull/243)
|
80
|
+
- Fix name of "iampa" subcommand in CLI help output [#237](https://github.com/dtan4/terraforming/pull/237) (thanks @jimmycuadra)
|
81
|
+
- Paginate all resources [#236](https://github.com/dtan4/terraforming/pull/236) (thanks @philsnow)
|
82
|
+
|
83
|
+
__NOTE:__ OpsWorks support was omitted at v0.10.0 due to lack of tests. See [#264](https://github.com/dtan4/terraforming/pull/264) in detail.
|
84
|
+
|
85
|
+
## Others
|
86
|
+
|
87
|
+
- Introduce [RuboCop](https://github.com/bbatsov/rubocop) and [SideCI](https://sideci.com/) to check coding style automatically [#242](https://github.com/dtan4/terraforming/pull/242)
|
88
|
+
|
89
|
+
# [v0.9.1](https://github.com/dtan4/terraforming/releases/tag/v0.9.1) (2016-06-17)
|
90
|
+
|
91
|
+
## Fixed / Updated
|
92
|
+
|
93
|
+
- Fix Ox load error #229 (thanks @winebarrel)
|
94
|
+
|
95
|
+
# [v0.9.0](https://github.com/dtan4/terraforming/releases/tag/v0.9.0) (2016-06-12)
|
96
|
+
|
97
|
+
## Resource
|
98
|
+
|
99
|
+
- AWS IAM Policy Attachment #225
|
100
|
+
|
101
|
+
## Fixed / Updated
|
102
|
+
|
103
|
+
- Add `access_logs` attribute to ELB #223
|
104
|
+
- Add `internal` attribute to ELB #221 (thanks @kbruner)
|
105
|
+
|
106
|
+
# [v0.8.0](https://github.com/dtan4/terraforming/releases/tag/v0.8.0) (2016-05-29)
|
107
|
+
|
108
|
+
## Notice
|
109
|
+
|
110
|
+
- Drop Ruby 2.0 support. Now Terraforming supports Ruby 2.1 or higher. #206
|
111
|
+
|
112
|
+
## Resource
|
113
|
+
|
114
|
+
- AWS VPN Gateway #190 (thanks @tmccabe07)
|
115
|
+
- AWS Launch Configuration #187 (thanks @phoolish)
|
116
|
+
- AWS SQS #169 (thanks @manabusakai)
|
117
|
+
|
118
|
+
## Fixed / Updated
|
119
|
+
|
120
|
+
- Add prefix not to duplicate IAM inline policy name #212 (thanks @stormbeta)
|
121
|
+
- Use the latest Ox and Oj #210
|
122
|
+
- Simplify Security Group name #207 (thanks @woohgit)
|
123
|
+
- Include description field for IAM policies #203 (thanks @stormbeta)
|
124
|
+
- Support paging paging for IAM resources #201 (thanks @dominis)
|
125
|
+
- Fix Security Group output around EC2-Classic #200 (thanks @woohgit)
|
126
|
+
- Default Route53 record weight should be "-1" #197 (thanks @woohgit)
|
127
|
+
- Add Elasticache Redis port #189 (thanks @phoolish)
|
128
|
+
- Add `--region` option #188 (thanks @hajhatten)
|
129
|
+
- Add zsh completion #176 (thanks @knakayama)
|
130
|
+
- Add subnet ID to the resource name #185 (thanks @bandesz)
|
131
|
+
- Add EC2 placement group #180 (thanks @wsh)
|
132
|
+
- Wrap tag name in ELB #179 (thanks @robatwave)
|
133
|
+
- Retrive full list of AutoScaling Groups #170 (thanks @shouyu)
|
134
|
+
|
135
|
+
# [v0.7.0](https://github.com/dtan4/terraforming/releases/tag/v0.7.0) (2016-02-16)
|
136
|
+
|
137
|
+
## Resource
|
138
|
+
|
139
|
+
- AWS Internet Gateway #164 (thanks @manabusakai)
|
140
|
+
- AWS Redshift #161 (thanks @manabusakai)
|
141
|
+
|
142
|
+
## Fixed
|
143
|
+
|
144
|
+
- Modify AutoScaling Group tags format #167
|
145
|
+
- Support paging for Route53 records #160 (thanks @seanodonnell)
|
146
|
+
- Support paging for IAM user call #157 (thanks @crazed)
|
147
|
+
|
148
|
+
# [v0.6.2](https://github.com/dtan4/terraforming/releases/tag/v0.6.2) (2015-12-11)
|
149
|
+
|
150
|
+
## Fixed
|
151
|
+
|
152
|
+
- Get zone comment of Route53 Zone #149 (thanks @tjend)
|
153
|
+
- Skip implicit Route Table Association when generating tfstate #148 (thanks @kovyrin)
|
154
|
+
- Improve Route Table support #146 (thanks @kovyrin)
|
155
|
+
- Ignore EC2 source_dest_check if nil #143 (thanks @cmcarthur)
|
156
|
+
|
157
|
+
# [v0.6.1](https://github.com/dtan4/terraforming/releases/tag/v0.6.1) (2015-11-27)
|
158
|
+
|
159
|
+
## Fixed
|
160
|
+
|
161
|
+
- Fix wildcard record format of Route53 Record #139 (thanks @k1LoW)
|
162
|
+
|
163
|
+
# [v0.6.0](https://github.com/dtan4/terraforming/releases/tag/v0.6.0) (2015-11-21)
|
164
|
+
|
165
|
+
## Resource
|
166
|
+
|
167
|
+
- AWS Route Table Association #138 (thanks @k1LoW)
|
168
|
+
|
169
|
+
# [v0.5.0](https://github.com/dtan4/terraforming/releases/tag/v0.5.0) (2015-11-20)
|
170
|
+
|
171
|
+
## Resource
|
172
|
+
|
173
|
+
- AWS Route Table #137 (thanks @k1LoW)
|
174
|
+
|
175
|
+
# [v0.4.0](https://github.com/dtan4/terraforming/releases/tag/v0.4.0) (2015-11-10)
|
176
|
+
|
177
|
+
## New feature
|
178
|
+
|
179
|
+
- Add `--profile` option to read credential profile #135 (thanks @k1LoW)
|
180
|
+
|
181
|
+
## Resource
|
182
|
+
|
183
|
+
- AWS AutoScaling Group #134
|
184
|
+
|
185
|
+
# [v0.3.2](https://github.com/dtan4/terraforming/releases/tag/v0.3.2) (2015-10-06)
|
186
|
+
|
187
|
+
## Fixed
|
188
|
+
|
189
|
+
- Exclude iops field from EC2 instance tf with standard block device #132
|
190
|
+
|
191
|
+
# [v0.3.1](https://github.com/dtan4/terraforming/releases/tag/v0.3.1) (2015-09-24)
|
192
|
+
|
193
|
+
## Fixed
|
194
|
+
|
195
|
+
- Export EC2 instance monitoring state #130 (thanks @ngs)
|
196
|
+
|
197
|
+
# [v0.3.0](https://github.com/dtan4/terraforming/releases/tag/v0.3.0) (2015-08-23)
|
198
|
+
|
199
|
+
## Resource
|
200
|
+
|
201
|
+
- AWS Network Interface #127 (thanks @sakazuki)
|
202
|
+
- AWS Elastic IP #124 (thanks @sakazuki)
|
203
|
+
|
204
|
+
## Fixed
|
205
|
+
|
206
|
+
- Normalize module name of IAM user #129
|
207
|
+
|
208
|
+
# [v0.2.0](https://github.com/dtan4/terraforming/releases/tag/v0.2.0) (2015-08-22)
|
209
|
+
|
210
|
+
## New feature
|
211
|
+
|
212
|
+
- Add `--overwrite` option to overwrite existing `terraform.tfstate` #117
|
213
|
+
|
214
|
+
## Fixed
|
215
|
+
|
216
|
+
- Export S3 buckets only in the same region #121
|
217
|
+
- Exclude DB security group with empty ingress rules #120
|
218
|
+
- Include associated VPC parameters in Route53 hosted zone #119
|
219
|
+
- Support Route53 hosted zone with empty delegation set #118
|
220
|
+
|
221
|
+
# [v0.1.6](https://github.com/dtan4/terraforming/releases/tag/v0.1.6) (2015-08-10)
|
222
|
+
|
223
|
+
### Fixed
|
224
|
+
|
225
|
+
- Stop including ElastiCache port at any time #112
|
226
|
+
|
227
|
+
# [v0.1.5](https://github.com/dtan4/terraforming/releases/tag/v0.1.5) (2015-08-10)
|
228
|
+
|
229
|
+
### Updated
|
230
|
+
|
231
|
+
- Support S3 bucket policy #110
|
232
|
+
|
233
|
+
# [v0.1.4](https://github.com/dtan4/terraforming/releases/tag/v0.1.4) (2015-08-07)
|
234
|
+
|
235
|
+
### Fixed
|
236
|
+
|
237
|
+
- Refactor internal implements to reduce code #106
|
238
|
+
- Add tests and improvement for Security Group #105
|
239
|
+
|
240
|
+
# [v0.1.3](https://github.com/dtan4/terraforming/releases/tag/v0.1.3) (2015-08-01)
|
241
|
+
|
242
|
+
### Fixed
|
243
|
+
|
244
|
+
- Generate correct tf and tfstate if EC2 instance has no attached EBS #104
|
245
|
+
- Generate correct tfstate of Security Group #101 (thanks @grosendorf)
|
246
|
+
|
247
|
+
# [v0.1.2](https://github.com/dtan4/terraforming/releases/tag/v0.1.2) (2015-07-30)
|
248
|
+
|
249
|
+
### Fixed
|
250
|
+
|
251
|
+
- Generate correct tf and tfstate of EC2 #94, #102
|
252
|
+
- Handle multiple Route53 record types #99 (thanks @nicgrayson)
|
253
|
+
- Generate correct tfstate of ELB #91 (thanks @grosendorf)
|
254
|
+
|
255
|
+
# [v0.1.1](https://github.com/dtan4/terraforming/releases/tag/v0.1.1) (2015-07-14)
|
256
|
+
|
257
|
+
### Resource
|
258
|
+
|
259
|
+
- AWS ElastiCache Cluster
|
260
|
+
- AWS ElastiCache Subnet Group
|
261
|
+
- AWS IAM Group Membership
|
262
|
+
|
263
|
+
# [v0.1.0](https://github.com/dtan4/terraforming/releases/tag/v0.1.0) (2015-06-20)
|
264
|
+
|
265
|
+
### New feature
|
266
|
+
|
267
|
+
- `--merge TFSTATE_PATH` option: Merge generated tfstate to specified `terraform.tfstate`
|
268
|
+
|
269
|
+
### Fixed
|
270
|
+
|
271
|
+
- ELB must include either AZs or Subnets
|
272
|
+
- Include AWS Network ACL subnet ids
|
273
|
+
|
274
|
+
### Resource
|
275
|
+
|
276
|
+
- AWS IAM instance profile
|
277
|
+
- AWS IAM role
|
278
|
+
- AWS IAM role policy
|
279
|
+
|
280
|
+
# [v0.0.5](https://github.com/dtan4/terraforming/releases/tag/v0.0.5) (2015-06-01)
|
281
|
+
|
282
|
+
### Fixed
|
283
|
+
|
284
|
+
- Quote tag name #59
|
285
|
+
|
286
|
+
# [v0.0.4](https://github.com/dtan4/terraforming/releases/tag/v0.0.4) (2015-05-29)
|
287
|
+
|
288
|
+
### Fixed
|
289
|
+
|
290
|
+
- Generate tfstate `modules` as Hash #56 (thanks @endemics)
|
291
|
+
- Set unique module name to SecurityGroup #53
|
292
|
+
- Remove `owner_id` argument from SecurityGroup #54
|
293
|
+
|
294
|
+
# [v0.0.3](https://github.com/dtan4/terraforming/releases/tag/v0.0.3) (2015-05-26)
|
295
|
+
|
296
|
+
### Fixed
|
297
|
+
|
298
|
+
- Include AWS ELB additional attributes #39
|
299
|
+
|
300
|
+
### Resource
|
301
|
+
|
302
|
+
- AWS IAM group
|
303
|
+
- AWS IAM group policy
|
304
|
+
- AWS IAM policy
|
305
|
+
- AWS IAM user
|
306
|
+
- AWS IAM user policy
|
307
|
+
- AWS Route53 hosted zone
|
308
|
+
- AWS Route53 record
|
309
|
+
|
310
|
+
# [v0.0.2](https://github.com/dtan4/terraforming/releases/tag/v0.0.2) (2015-05-09)
|
311
|
+
|
312
|
+
### Fixed
|
313
|
+
|
314
|
+
- Nested module declation #35
|
315
|
+
- raised NameError exception #34
|
316
|
+
|
317
|
+
### Resource
|
318
|
+
|
319
|
+
- AWS Network ACL
|
320
|
+
|
321
|
+
# [v0.0.1](https://github.com/dtan4/terraforming/releases/tag/v0.0.1) (2015-04-23)
|
322
|
+
|
323
|
+
Initial release.
|
324
|
+
|
325
|
+
### Resource
|
326
|
+
|
327
|
+
- AWS Database Parameter Group
|
328
|
+
- AWS Database Security Group
|
329
|
+
- AWS Subnet Group
|
330
|
+
- AWS EC2 instances
|
331
|
+
- AWS ELB
|
332
|
+
- AWS RDS instances
|
333
|
+
- AWS S3 buckets
|
334
|
+
- AWS SecurityGroup
|
335
|
+
- AWS Subnet
|
336
|
+
- AWS VPC
|