Skip to content

Commit

Permalink
Add missing variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ha7315 committed Mar 26, 2024
1 parent a51a03c commit a3cc799
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions modules/create-rds-postgres-tester/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@ variable "aws_region" {
description = "Region for resource deployment"
}

variable "db_clients_security_group_id" {
type = string
description = "ID of the security group that allows access to the RDS instance"
}

variable "db_name" {
type = string
description = "Database name"
}

variable "create_tester_user_task_cpu" {
type = number
default = 256 # 0.25 vCPU
Expand All @@ -36,6 +26,24 @@ variable "create_tester_user_task_pgrestore_workers" {
description = "Number of pgrestore workers, one per CPU core"
}

variable "db_clients_security_group_id" {
type = string
description = "ID of the security group that allows access to the RDS instance"
}

variable "db_name" {
type = string
description = "Database name"
}

variable "ecs_execution_role" {
type = object({
arn = string
name = string
})
description = "Details of the role which is assumed by the ECS execution processes"
}

variable "migrator_name" {
description = "A name to distinguish this migrator"
type = string
Expand Down

0 comments on commit a3cc799

Please sign in to comment.