Skip to content

Commit

Permalink
variables.ts - region
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelberston committed Nov 19, 2024
1 parent 0043114 commit ea801a6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
variable "region" {
description = "AWS region to deploy resources"
type = string
default = "us-west-1"
}

variable "db_username" {
description = "Database administrator username"
type = string
sensitive = true
}

variable "db_password" {
description = "Database administrator password"
type = string
sensitive = true
}

0 comments on commit ea801a6

Please sign in to comment.