Merge pull request #3817 from JefStat/patch-1

Fix spelling mistake in aws saml example
This commit is contained in:
Radek Simko 2015-11-09 17:00:20 +01:00
commit 564b235b82
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
--- ---
layout: "aws" layout: "aws"
page_title: "AWS: aws_saml_provider" page_title: "AWS: aws_iam_saml_provider"
sidebar_current: "docs-aws-resource-iam-saml-provider" sidebar_current: "docs-aws-resource-iam-saml-provider"
description: |- description: |-
Provides an IAM SAML provider. Provides an IAM SAML provider.
@ -13,7 +13,7 @@ Provides an IAM SAML provider.
## Example Usage ## Example Usage
``` ```
resource "aws_saml_provider" "default" { resource "aws_iam_saml_provider" "default" {
name = "myprovider" name = "myprovider"
saml_metadata_document = "${file("saml-metadata.xml")}" saml_metadata_document = "${file("saml-metadata.xml")}"
} }