Skip to content

Commit

Permalink
Update app/service root module aws provider version to >=5.35.0 (#731)
Browse files Browse the repository at this point in the history
⚠️ Breaking changes:

There are breaking changes between aws provider v4.x and v5.x. When upgrading the infrastructure template, projects should review and follow the [aws provider update release notes](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/version-5-upgrade). The upgrade should have no impact on the infrastructure template, but projects that have added additional terraform modules should be mindful.
  • Loading branch information
rocketnova authored Aug 14, 2024
1 parent 409f6aa commit 7a9b157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion infra/app/service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 4.56.0, < 5.0.0"
version = ">= 5.35.0, < 6.0.0"
}
}

Expand Down
1 change: 1 addition & 0 deletions infra/modules/service/jobs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ resource "aws_cloudwatch_event_target" "document_upload_jobs" {
ecs_target {
task_definition_arn = aws_ecs_task_definition.app.arn
launch_type = "FARGATE"
propagate_tags = "TASK_DEFINITION"

# Configuring Network Configuration is required when the task definition uses the awsvpc network mode.
network_configuration {
Expand Down

0 comments on commit 7a9b157

Please sign in to comment.