Skip to content

Commit

Permalink
Add tx-tool ECR and update ecs resources
Browse files Browse the repository at this point in the history
  • Loading branch information
seniakalma committed Jan 2, 2025
1 parent d144c12 commit 2440589
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
locals {
# Automatically load environment-level variables
environment_vars = read_terragrunt_config(find_in_parent_folders("env.hcl"))

region_vars = read_terragrunt_config(find_in_parent_folders("region.hcl"))
account_vars = read_terragrunt_config(find_in_parent_folders("account.hcl"))
# Extract out common variables for reuse
env = local.environment_vars.locals.environment
}

# Terragrunt will copy the Terraform configurations specified by the source parameter, along with any files in the
# working directory, into a temporary folder, and execute your Terraform commands in that folder.
terraform {
source = "../../../../../terraform-aws-modules//ecr"
}

# Include all settings from the root terragrunt.hcl file
include {
path = find_in_parent_folders()
}

inputs = {
env = local.env
name = "tx-tool"
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ inputs = {

image = "${dependency.ecr.outputs.ecr-url}:latest"

# task_memory=3072 #
# task_cpu=1024 #
task_memory=4096
task_cpu=1024

enable_logging = true

Expand Down

0 comments on commit 2440589

Please sign in to comment.