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

Add EFS transit encryption and authorization config options for ECS task definition #13136

Merged
merged 23 commits into from
Jun 24, 2020
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a2e0a3e
Update ECS task def resource schema
jukie May 2, 2020
384fb86
Update EFS volume config to account for transit encryption
jukie May 2, 2020
ecd240d
Update acceptance tests to use transit encryption
jukie May 2, 2020
3fdfdfb
Update website docs for EFS volume config options
jukie May 2, 2020
8a69551
"Update acceptance tests to use transit encryption"
jukie May 3, 2020
9cc8178
Merge remote-tracking branch 'upstream/master' into 12809-efs-vol-conf
jukie May 20, 2020
69b738b
Add EFS Access Point config schema and tests
jukie May 20, 2020
4d1ac27
Use bool values intsead
jukie May 20, 2020
98edb56
Add docs for authorization config
jukie May 20, 2020
c8bdc0e
Apply linting and remove extraneous change
jukie May 20, 2020
eb2c35f
Better align schema keys with api names
jukie Jun 10, 2020
ad54a93
Merge remote-tracking branch 'upstream/master' into 12809-efs-vol-conf
jukie Jun 10, 2020
3a8a596
Add new schemas to volume hash
jukie Jun 10, 2020
ff3457a
Update tests and fix encryption port
jukie Jun 10, 2020
fd9d5a8
Remove default root directory path and fix auth config hash
jukie Jun 10, 2020
099a608
Update website/docs/r/ecs_task_definition.html.markdown
jukie Jun 10, 2020
db5d4d4
Update website/docs/r/ecs_task_definition.html.markdown
jukie Jun 10, 2020
aa20722
Update website/docs/r/ecs_task_definition.html.markdown
jukie Jun 10, 2020
a6b19f4
Apply suggestions from code review
jukie Jun 10, 2020
e676776
Ignore root_directory if authorization_config is used
jukie Jun 10, 2020
68a9800
Add validator functions for EFSAuthorizationConfigIAM and EFSTransitE…
jukie Jun 11, 2020
4c5c6e4
Fix typo in function name
jukie Jun 11, 2020
b18cda5
Rebase from master
jukie Jun 20, 2020
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 website/docs/r/ecs_task_definition.html.markdown
Co-authored-by: Milosz Pogoda <31830726+milpog@users.noreply.github.com>
  • Loading branch information
jukie and milpog committed Jun 10, 2020
commit aa2072284dc1bfb7aef7a5243961e5df9278df02
2 changes: 1 addition & 1 deletion website/docs/r/ecs_task_definition.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ resource "aws_ecs_task_definition" "service" {
For more information, see [Specifying an EFS volume in your Task Definition Developer Guide](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/efs-volumes.html#specify-efs-config)

* `file_system_id` - (Required) The ID of the EFS File System.
* `root_directory` - (Optional) The path to mount on the host
* `root_directory` - (Optional) The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume will be used. Specifying / will have the same effect as omitting this parameter.
* `transit_encryption` - (Optional) Boolean whether to use transit encryption.
jukie marked this conversation as resolved.
Show resolved Hide resolved
* `transit_encryption_port` - (Optional) The port to use for transit encryption. If you do not specify a transit encryption port, it will use the port selection strategy that the Amazon EFS mount helper uses.
* `authorization_config` - (Optional) The authorization configuration details for the Amazon EFS file system.
Expand Down