18 lines
238 B
Terraform
18 lines
238 B
Terraform
|
variable "hcloud_token" {
|
||
|
sensitive = true
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "dnsimple_token" {
|
||
|
sensitive = true
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "dnsimple_aaccount_id" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "ssh_keys" {
|
||
|
type = map(string)
|
||
|
}
|