typo in iam_instance_profile docs (#13647)

This commit is contained in:
Adam Leventhal 2017-04-14 01:51:29 -07:00 committed by Paul Stack
parent e761814ca0
commit a6f28d2d0b
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ Provides an IAM instance profile.
```
resource "aws_iam_instance_profile" "test_profile" {
name = "test_profile"
roles = ["${aws_iam_role.role.name}"]
role = "${aws_iam_role.role.name}"
}
resource "aws_iam_role" "role" {
@ -50,7 +50,7 @@ The following arguments are supported:
* `name_prefix` - (Optional, Forces new resource) Creates a unique name beginning with the specified prefix. Conflicts with `name`.
* `path` - (Optional, default "/") Path in which to create the profile.
* `roles` - (Optional) A list of role names to include in the profile. The current default is 1. If you see an error message similar to `Cannot exceed quota for InstanceSessionsPerInstanceProfile: 1`, then you must contact AWS support and ask for a limit increase. `WARNING: This will be deprecated in a future version of Terraform`.
* `role` - (Optional) The role name to include in the profile. This.
* `role` - (Optional) The role name to include in the profile.
## Attribute Reference