mirror of
https://github.com/optim-enterprises-bv/databunker.git
synced 2025-10-30 17:37:50 +00:00
12 lines
225 B
HCL
12 lines
225 B
HCL
variable "aws_access_key" {}
|
|
variable "aws_secret_key" {}
|
|
variable "region" {
|
|
default = "eu-north-1"
|
|
}
|
|
|
|
resource "random_password" "db_password" {
|
|
length = 16
|
|
special = true
|
|
override_special = "@/"
|
|
}
|