23 lines
414 B
Terraform
23 lines
414 B
Terraform
|
variable "linode_token" {
|
||
|
description = "Linode API token"
|
||
|
}
|
||
|
|
||
|
variable "linode_rootpasswd" {
|
||
|
description = "Linode root passwd"
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "linode_region" {
|
||
|
description = "Linode region"
|
||
|
}
|
||
|
|
||
|
variable "linode_nbgw_hostname" {
|
||
|
description = "nbgw hostname"
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "linode_wheel_login" {
|
||
|
type = string
|
||
|
description = "username of the admin user"
|
||
|
}
|