provider/aws: Add docs for aws_iam_saml_provider

This commit is contained in:
Radek Simko 2015-09-02 20:01:36 +01:00
parent 5001bb078e
commit ac762e5503
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,34 @@
---
layout: "aws"
page_title: "AWS: aws_saml_provider"
sidebar_current: "docs-aws-resource-iam-saml-provider"
description: |-
Provides an IAM SAML provider.
---
# aws\_iam\_saml\_provider
Provides an IAM SAML provider.
## Example Usage
```
resource "aws_saml_provider" "default" {
name = "myprovider"
saml_metadata_document = "${file("saml-metadata.xml")}"
}
```
## Argument Reference
The following arguments are supported:
* `name` - (Required) The name of the provider to create.
* `saml_metadata_document` - (Required) An XML document generated by an identity provider that supports SAML 2.0.
## Attributes Reference
The following attributes are exported:
* `arn` - The ARN assigned by AWS for this provider.
* `valid_until` - The expiration date and time for the SAML provider in RFC1123 format, e.g. `Mon, 02 Jan 2006 15:04:05 MST`.

View File

@ -179,6 +179,10 @@
<a href="/docs/providers/aws/r/iam_role_policy.html">aws_iam_role_policy</a>
</li>
<li<%= sidebar_current("docs-aws-resource-iam-saml-provider") %>>
<a href="/docs/providers/aws/r/iam_saml_provider.html">aws_iam_saml_provider</a>
</li>
<li<%= sidebar_current("docs-aws-resource-iam-server-certificate") %>>
<a href="/docs/providers/aws/r/iam_server_certificate.html">aws_iam_server_certificate</a>
</li>