16 lines
299 B
Terraform
16 lines
299 B
Terraform
|
|
variable "fqdn" {
|
||
|
|
description = "FQDN for the service"
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "tag" {
|
||
|
|
description = "Image tag to deploy"
|
||
|
|
type = string
|
||
|
|
default = "1.0.0"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "persistent_folder" {
|
||
|
|
description = "Path for persistent data on the host"
|
||
|
|
type = string
|
||
|
|
}
|