Skip to content

Commit 866dd70

Browse files
ryankingczimergebot
authored andcommitted
cztack release 0.11.0
1 parent e6d6574 commit 866dd70

12 files changed

Lines changed: 19 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## 0.11.0 2018-07-30
4+
5+
Initial release of open source modules. Number is kept in-sync with internal repo.
6+
7+
Currently moved to this repo are all our IAM and secrets modules.

aws-default-vpc-security/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This module will name, tag and optionally lock down traffic to AWS Default VPCs.
66

77
```hcl
88
module "default-vpc" {
9-
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=master # TODO
9+
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=master"
1010
1111
default_sg_lockdown = true
1212
}
@@ -22,7 +22,7 @@ provider "aws"{
2222
}
2323
2424
module "default-vpc" {
25-
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=master # TODO
25+
source = "github.com/chanzuckerberg/cztack/aws-default-vpc-lockdown?ref=master"
2626
2727
default_sg_lockdown = true
2828

aws-iam-ecs-task-role/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This will create a role for attaching to an ECS task, using `policy`.
66

77
```hcl
88
module "ecs-role" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-ecs-task-role?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-ecs-task-role?ref=v0.11.0"
1010
1111
policy = "..."
1212

aws-iam-group-assume-role/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This module will create a group which has the right to assume a particular IAM r
44

55
```hcl
66
module "group" {
7-
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=master" # FIXME
7+
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.11.0"
88
99
group_name = "…"
1010
path = "…"

aws-iam-group-console-login/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This module will create an IAM group and grant access for its members to log int
66

77
```hcl
88
module "group" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-group-console-login?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-group-console-login?ref=v0.11.0"
1010
1111
group_name = "…"
1212
iam_path = "…"

aws-iam-password-policy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This module is useful for setting a password policy on AWS IAM.
66

77
```hcl
88
module "password-policy" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-password-policy?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-password-policy?ref=v0.11.0"
1010
}
1111
```
1212

aws-iam-policy-cwlogs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This will create a policy that allows writing to cloudwatch logs and attach it t
66

77
```hcl
88
module "policy" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-policy-cwlogs?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-policy-cwlogs?ref=v0.11.0"
1010
1111
1212
iam_path = "…"

aws-iam-role-poweruser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This creates a role, `role_name` which is assumable from the account `source_acc
66

77
```hcl
88
module "group" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-role-poweruser?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-role-poweruser?ref=v0.11.0"
1010
1111
role_name = "…" # defaults to "poweruser"
1212
source_account_id = "…"

aws-iam-role-readonly/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This will create a readonly role, assumeable from `source_account_id`.
66

77
```hcl
88
module "role" {
9-
source = "github.com/chanzuckerberg/cztack/aws-iam-role-readonly?ref=master" # FIXME
9+
source = "github.com/chanzuckerberg/cztack/aws-iam-role-readonly?ref=v0.11.0"
1010
1111
source_account_id = "…"
1212
}

aws-iam-role-security-audit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This will create a role for doing security audits, assumeable from `source_accou
77

88
```hcl
99
module "group" {
10-
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=master" # FIXME
10+
source = "github.com/chanzuckerberg/cztack/aws-iam-group-assume-role?ref=v0.11.0"
1111
1212
source_account_id = "…"
1313
}

0 commit comments

Comments
 (0)