Skip to content

Commit

Permalink
feat: add module rds variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dusdjhyeon committed Dec 7, 2023
1 parent 3c11f1d commit c41f6c9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions module-rds/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
variable "aws_region" {
type = string
}

variable "db_subnet_ids" {
type = list(any)
}

variable "db_name" {
type = string
}

variable "db_username" {
type = string
}

variable "db_password" {
type = string
}

0 comments on commit c41f6c9

Please sign in to comment.