Fix spelling mistake in aws saml example

Example resource name is `aws_iam_saml_provider` instead of `aws_saml_provider`.
This commit is contained in:
Jef Statham 2015-11-09 09:56:38 -05:00
parent 091b687a7b
commit 87e384dc97
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Provides an IAM SAML provider.
## Example Usage
```
resource "aws_saml_provider" "default" {
resource "aws_iam_saml_provider" "default" {
name = "myprovider"
saml_metadata_document = "${file("saml-metadata.xml")}"
}