20 lines
392 B
Terraform
20 lines
392 B
Terraform
variable "persistent_folder" {
|
|
description = "The path to the persistent folder"
|
|
type = string
|
|
}
|
|
|
|
variable "music_folder" {
|
|
description = "The path to the persistent folder"
|
|
type = string
|
|
}
|
|
|
|
variable "tag" {
|
|
description = "The version of app to install"
|
|
type = string
|
|
default = "latest"
|
|
}
|
|
|
|
variable "fqdn" {
|
|
description = "FDQN name of the service"
|
|
}
|