Skip to content

Commit

Permalink
Merge pull request #2582 from Tomohiro/fix-iam-user-access-key-example
Browse files Browse the repository at this point in the history
Remove status argument from `aws_iam_access_key` example usage
  • Loading branch information
phinze committed Jul 1, 2015
2 parents 75a5d38 + 405ed57 commit 3dc055f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Provides an IAM access key. This is a set of credentials that allow API requests
```
resource "aws_iam_access_key" "lb" {
user = "${aws_iam_user.lb.name}"
status = "Active"
}
resource "aws_iam_user" "lb" {
Expand Down
1 change: 0 additions & 1 deletion website/source/docs/providers/aws/r/iam_user.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ resource "aws_iam_user" "lb" {
resource "aws_iam_access_key" "lb" {
user = "${aws_iam_user.lb.name}"
status = "Active"
}
resource "aws_iam_user_policy" "lb_ro" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ resource "aws_iam_user" "lb" {
resource "aws_iam_access_key" "lb" {
user = "${aws_iam_user.lb.name}"
status = "Active"
}
```

Expand Down

0 comments on commit 3dc055f

Please sign in to comment.