Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 18, 2024
1 parent f10966a commit d5007f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tf/modules/ecs_cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ variable "vpc_id" {

variable "subnet_ids" {
description = "the ids of the subnet of the subnets to deploy the instance into"
type = list(string)
}

variable "tags" {
Expand Down
1 change: 1 addition & 0 deletions tf/modules/ooniapi_service/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ variable "vpc_id" {

variable "subnet_ids" {
description = "the ids of the subnet of the subnets to deploy the instance into"
type = list(string)
}

variable "tags" {
Expand Down
2 changes: 1 addition & 1 deletion tf/modules/oonith_service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ resource "aws_ecs_task_definition" "oonith_service" {
memory = var.task_memory,
name = local.name,


portMappings = [
{
containerPort = local.container_port,
hostPort = local.container_port,
}
],
environment = [
Expand Down

0 comments on commit d5007f5

Please sign in to comment.