forked from grey/example-deployable-app
8 lines
233 B
Terraform
8 lines
233 B
Terraform
|
variable "docker_prefix" {
|
||
|
description = "Prefix for all docker resources.. We're not alone on this box, so we best avoid collisions"
|
||
|
}
|
||
|
variable "tz" {
|
||
|
description = "Timezone for the server"
|
||
|
default = "Europe/Amsterdam"
|
||
|
}
|