-
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
aws_ecs_task_definition: Add support for proxyConfiguration parameter #8253
Comments
Hi,
Build the provider:
Now just replace your current AWS provider with the newly built version. To do that, move the new binary to PROJECT_ROOT/.terraform/plugins/PLATFORM/BINARY. I my case that translates to:
Afterwards, run You can use it just like container_definitions, by specifying a JSON file path and using the
Example Proxy Configuration JSON:
This is what my apply looks like now: Cheers, |
Support for managing a new |
This has been released in version 2.16.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
No sure if I should open a new issue or comment here, but I'm having some issues with the This is my setup (partially):
When I run
|
Hi @bartvollebregt 👋 Terraform 0.12 performs stricter validation of the configuration language, which in previous versions allowed assignment of both configuration blocks and arguments with the equals ( resource "aws_ecs_task_definition" "frontend_task_definition" {
# ... other configuration ...
proxy_configuration {
# ... other configuration ...
}
} Hope this helps. |
It's working now. Thanks a lot! |
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
The new proxyConfiguration parameter needs to be supported to configure AWS App Mesh: https://docs.aws.amazon.com/AmazonECS/latest/userguide/task_definition_parameters.html#task_definition_proxyConfiguration
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: