Skip to content

Commit

Permalink
cztack release 0.12.0 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking authored Aug 15, 2018
1 parent 92130ad commit f17226d
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.12.0 2018-08-15
* added a suite of tests via Terratest
* [new] module for ec2 poweruser role
* [new] modules for aws aurora
* better docs for our taggging approach
* [breaking] refactor of params/secrets modules
* [new] AWS ACM cert module

## 0.11.0 2018-07-30

Initial release of open source modules. Number is kept in-sync with internal repo.
Expand Down
2 changes: 1 addition & 1 deletion aws-acm-cert/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ NOTE: if you intend to use this certificate in a cloudfront distribution it must

```hcl
module "cert" {
source = "github.com/chanzuckerberg/cztack//aws-acm-cert?ref=master"
source = "github.com/chanzuckerberg/cztack//aws-acm-cert?ref=v0.12.0"
# the cert domain name
cert_domain_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-aurora-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A simple example:

```hcl
module "db" {
source = "github.com/chanzuckerberg/cztack//aws-aurora-mysql?ref=master"
source = "github.com/chanzuckerberg/cztack//aws-aurora-mysql?ref=v0.12.0"
database_name = "..."
database_subnet_group = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-aurora-postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A simple example:

```hcl
module "db" {
source = "github.com/chanzuckerberg/cztack//aws-aurora-postgres?ref=master"
source = "github.com/chanzuckerberg/cztack//aws-aurora-postgres?ref=v0.12.0"
database_name = "..."
database_subnet_group = "..."
Expand Down
4 changes: 2 additions & 2 deletions aws-default-vpc-security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module will name, tag and optionally lock down traffic to AWS Default VPCs.

```hcl
module "default-vpc" {
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=master"
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=v0.12.0"
# Lock down the default security group in the default VPC to deny all traffic.
default_sg_lockdown = true
Expand All @@ -23,7 +23,7 @@ provider "aws"{
}
module "default-vpc" {
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=v0.12.0"
default_sg_lockdown = true
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-ecs-task-role/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This will create a role for attaching to an ECS task, using `policy`.

```hcl
module "ecs-role" {
source = "github.com/chanzuckerberg/cztack/aws-iam-ecs-task-role?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-ecs-task-role?ref=v0.12.0"
# IAM policy
policy = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-group-assume-role/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This module will create a group which has the right to assume a particular IAM r

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.12.0"
group_name = "..."
iam_path = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-group-console-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module will create an IAM group and grant access for its members to log int

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack/aws-iam-group-console-login?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-group-console-login?ref=v0.12.0"
group_name = "..."
iam_path = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-password-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module is useful for setting a password policy on AWS IAM.

```hcl
module "password-policy" {
source = "github.com/chanzuckerberg/cztack/aws-iam-password-policy?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-password-policy?ref=v0.12.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion aws-iam-policy-cwlogs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This will create a policy that allows writing to cloudwatch logs and attach it t

```hcl
module "policy" {
source = "github.com/chanzuckerberg/cztack/aws-iam-policy-cwlogs?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-policy-cwlogs?ref=v0.12.0"
iam_path = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-crossacct/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module makes it easy to define a role assumeable by another AWS account. Li

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack//aws-iam-role-crossacct?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack//aws-iam-role-crossacct?ref=v0.12.0"
# The name of the role to create (in this account).
role_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-ec2-poweruser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module will create a role, assumeable by another account, which has EC2 Pow

```hcl
module "ec2-poweruser" {
source = "github.com/chanzuckerberg/cztack//aws-iam-role-ec2-poweruser?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack//aws-iam-role-ec2-poweruser?ref=v0.12.0"
# The name of the role to create in this account.
role_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-ecs-poweruser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module will create a role, assumeable by another account, which has ECS Pow

```hcl
module "ec2-poweruser" {
source = "github.com/chanzuckerberg/cztack//aws-iam-role-ecs-poweruser?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack//aws-iam-role-ecs-poweruser?ref=v0.12.0"
# The name of the role to create in this account.
role_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-poweruser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This creates a role, `role_name` which is assumable from the account `source_acc

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack/aws-iam-role-poweruser?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-role-poweruser?ref=v0.12.0"
# defaults to "poweruser"
role_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-readonly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This will create a readonly role, assumeable from `source_account_id`.

```hcl
module "role" {
source = "github.com/chanzuckerberg/cztack/aws-iam-role-readonly?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-role-readonly?ref=v0.12.0"
# defaults to 'readonly'
role_name = "..."
Expand Down
2 changes: 1 addition & 1 deletion aws-iam-role-security-audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This will create a role for doing security audits, assumeable from `source_accou

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.12.0"
source_account_id = "..."
}
Expand Down
2 changes: 1 addition & 1 deletion aws-param/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can use [our secrets setup module](../aws-param-secrets-setup/README.md) to

```hcl
module "secret" {
source = "github.com/chanzuckerberg/cztack/aws-param-secret?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/aws-param-secret?ref=v0.12.0"
project = "acme"
env = "staging"
Expand Down
2 changes: 1 addition & 1 deletion module-template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```hcl
module "group" {
source = "github.com/chanzuckerberg/cztack/...?ref=v0.11.0"
source = "github.com/chanzuckerberg/cztack/...?ref=v0.12.0"
}
output "..." {
Expand Down

0 comments on commit f17226d

Please sign in to comment.