Skip to content

Commit

Permalink
included extra variables for the module
Browse files Browse the repository at this point in the history
  • Loading branch information
tajewole-moj committed Oct 23, 2023
1 parent 53f946b commit 41bf25b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/environments/apex/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function_name = local.functions
handler = local.handlers
role = module.iambackup.backuprole
runtime = local.runtime
subnet_ids = data.aws_subnet.private_subnets_a.id


tags = merge(
Expand Down
5 changes: 5 additions & 0 deletions terraform/environments/apex/modules/lambda/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@ variable "runtime" {
variable "security_grp_name" {
type = string
default = ""
}

variable "subnet_ids" {
type =list(string)
default = [""]
}
5 changes: 5 additions & 0 deletions terraform/environments/apex/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,9 @@ variable "runtime" {
variable "security_grp_name" {
type = string
default = ""
}

variable "subnet_ids" {
type =list(string)
default = [""]
}

0 comments on commit 41bf25b

Please sign in to comment.