16 lines
209 B
HCL
16 lines
209 B
HCL
locals {
|
|
net-cidr = "10.0.0.0/8"
|
|
|
|
nat-private-ip = "10.0.1.5"
|
|
}
|
|
|
|
variable "public_key_file" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "hcloud_token" {
|
|
type = string
|
|
sensitive = true
|
|
}
|