Skip to content

Commit

Permalink
Rename Repo (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored Oct 20, 2017
1 parent 039ad13 commit f339af7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright 2017 Cloud Posse, LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tf_assumed_roles
# terraform-aws-iam-assumed-roles

Provides two IAM roles and two IAM groups assuming these roles
Provides two IAM roles and two IAM groups for assuming these roles provided MFA is present.

- role and group named as **ops** has Administratror (full) access to AWS resources
- role and group named as **readonly** has ReadOnly access to AWS resources
Expand All @@ -9,15 +9,15 @@ To give some user Administrator's access just add user to group **ops**

### Module usage

```
```hcl
module "assumed_roles" {
source = "github.com/cloudposse/tf_assumed_roles"
source = "git::https://github.com/cloudposse/terraform-aws-iam-assumed-roles.git?ref=master"
}
```

### Example usage

```
```hcl
resource "aws_iam_user" "Alice" {
name = "Alice"
}
Expand All @@ -27,7 +27,7 @@ resource "aws_iam_user" "Diana" {
}
module "assumed_roles" {
source = "github.com/cloudposse/tf_assumed_roles"
source = "github.com/cloudposse/terraform-aws-iam-assumed-roles.git?ref=master"
admin_group_name = "Admins"
readonly_group_name = "Watchers"
}
Expand Down

0 comments on commit f339af7

Please sign in to comment.