provider/aws: Fix argument reference for aws_ssm_document resource; changes argument permission to the correct name permissions.

This commit is contained in:
Eric Westfall 2017-02-24 22:42:43 -05:00 committed by Paul Stack
parent 72da290e1d
commit a7078ad897
1 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ The following arguments are supported:
* `name` - (Required) The name of the document.
* `content` - (Required) The json content of the document.
* `document_type` - (Required) The type of the document. Valid document types include: `Command`, `Policy` and `Automation`
* `permission` - (Optional) Additional Permissions to attach to the document. See [Permissions](#permissions) below for details.
* `permissions` - (Optional) Additional Permissions to attach to the document. See [Permissions](#permissions) below for details.
## Attributes Reference
@ -64,16 +64,16 @@ The following attributes are exported:
* `owner` - The AWS user account of the person who created the document.
* `status` - "Creating", "Active" or "Deleting". The current status of the document.
* `parameter` - The parameters that are available to this document.
* `permission` - The permissions of how this document should be shared.
* `permissions` - The permissions of how this document should be shared.
* `platform_types` - A list of OS platforms compatible with this SSM document, either "Windows" or "Linux".
## Permissions
The permission attribute specifies how you want to share the document. If you share a document privately,
The permissions attribute specifies how you want to share the document. If you share a document privately,
you must specify the AWS user account IDs for those people who can use the document. If you share a document
publicly, you must specify All as the account ID.
The permission mapping support the following:
The permissions mapping supports the following:
* `type` - The permission type for the document. The permission type can be `Share`.
* `account_ids` - The AWS user accounts that should have access to the document. The account IDs can either be a group of account IDs or `All`.