-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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 support for EFS File Systems configuration in Amazon ECS and AWS Fargate #12741
Comments
the IAM and Access Point configs needs to be added |
@DrFaust92 I tried upgrading my ECS Fargate services using latest terraform provider and it didn't upgrade it to platform version 1.4. Could it be that it requires SDK upgrade as well? |
Can you share your config? The changes are for ecs task definition and the platform version is part of ecs service (may be needed to specify explicitly 1.4 and not the default) I'll try to test it but I don't see anything in the new sdk version that's related |
Hi I am using my module which you can find here together with the ecs_service resources. https://github.com/umotif-public/terraform-aws-ecs-fargate/blob/master/main.tf#L220 I am not specifying |
tested it, does not work in either config. well have to wait for the new sdk version merge and try again then. |
|
So to test this, you must specify |
Argh, I user 1.4 and not 1.4.0 so it might the reason it failed on my side.
I'll check again.
…On Thu, Apr 9, 2020, 21:10 Corry Haines ***@***.***> wrote:
LATEST still points to 1.3.0 per the docs:
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
To use a specific platform version, specify the version number when
creating or updating your service. If you specify LATEST, your tasks use
platform version 1.3.0.
So to test this, you must specify 1.4.0 at the moment.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#12741 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIA2W7UWZ4ETCY7TB3PTXSDRLYFSJANCNFSM4MEPPHGQ>
.
|
Thanks @tabletcorry! Just tested with |
So to wrap up this issue. This feature is already supported and to use the latest version of fargate we need to specify the following: resource "aws_ecs_service" "service" {
...
platform_version = "1.4.0"
} and for some random reason LATEST version still points at 1.3.0 version. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Community Note
Description
Add support for new feature
EFSVolumeConfiguration
which is available for ECS + Fargate running platform version 1.4.References
The text was updated successfully, but these errors were encountered: