Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resource/aws_efs_file_system: Add support for encryption #1420

Merged
merged 9 commits into from
Aug 17, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs for EFS encryption
  • Loading branch information
Pawel Fiuto committed Aug 15, 2017
commit 76f773c3f936442828a7dc7cbbb920807d77fe49
5 changes: 3 additions & 2 deletions website/docs/d/efs_file_system.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ data "aws_efs_file_system" "by_id" {
The following arguments are supported:

* `file_system_id` - (Optional) The ID that identifies the file system (e.g. fs-ccfc0d65).
* `creation_token` - (Optional) Restricts the list to the file system with this creation token
* `creation_token` - (Optional) Restricts the list to the file system with this creation token.

## Attributes Reference

The following attributes are exported:

* `performance_mode` - The PerformanceMode of the file system.
* `tags` - The list of tags assigned to the file system.

* `encrypted` - Whether EFS is encrypted.
* `kms_key_id` - The ARN for the KMS encryption key.
3 changes: 3 additions & 0 deletions website/docs/r/efs_file_system.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ default generated by Terraform.
* `performance_mode` - (Optional) The file system performance mode. Can be either
`"generalPurpose"` or `"maxIO"` (Default: `"generalPurpose"`).
* `tags` - (Optional) A mapping of tags to assign to the file system.
* `encrypted` - (Optional) If true, the disk will be encrypted.
* `kms_key_id` - (Optional) The ARN for the KMS encryption key. When specifying kms_key_id, encrypted needs to be set to true.

## Attributes Reference

The following attributes are exported:

* `id` - The ID that identifies the file system (e.g. fs-ccfc0d65).
* `kms_key_id` - The ARN for the KMS encryption key.

## Import

Expand Down