Skip to content

Commit

Permalink
Vignesh/cf 3811 type in the access handler ecs task memory argument f…
Browse files Browse the repository at this point in the history
…or the (#376)

* Fixed typos in access_handler_ecs_task_memory

* added patch changeset
  • Loading branch information
VigneshSelvaraj96 authored Nov 25, 2024
1 parent 9c7805b commit 291d2d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/lazy-spoons-remember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@common-fate/terraform-aws-common-fate-deployment": patch
---

fixed a typo in `access_handler_ecs_task_memory`
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module "control_plane_db" {
apply_immediately = var.rds_apply_immediately
snapshot_identifier = var.rds_snapshot_identifier
rds_instance_identifier_suffix = var.rds_instance_identifier_suffix
rds_instance_type = var.rds_instance_type
rds_instance_type = var.rds_instance_type
}


Expand Down Expand Up @@ -346,7 +346,7 @@ module "access_handler" {
factory_base_url = var.factory_base_url
factory_oidc_issuer = var.factory_oidc_issuer
ecs_task_cpu = var.access_handler_ecs_task_cpu
ecs_task_memory = var.access_hander_ecs_task_memory
ecs_task_memory = var.access_handler_ecs_task_memory
access_target_group_arns = var.access_target_group_arns
builtin_provisioner_url = module.provisioner.provisioner_url
iam_role_permission_boundary = var.iam_role_permission_boundary
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ variable "worker_ecs_task_cpu" {
default = "512"
}

variable "access_hander_ecs_task_memory" {
variable "access_handler_ecs_task_memory" {
description = "The amount of memory to allocate for the ECS task. Specified in MiB."
type = string
default = "1024"
Expand Down

0 comments on commit 291d2d5

Please sign in to comment.