remove unecessary hcloud_token var in host module

This commit is contained in:
phaer 2022-03-05 14:50:54 +01:00
parent 45b8178e96
commit 3337a6a4f5
3 changed files with 0 additions and 10 deletions

View File

@ -24,8 +24,6 @@ module "agents" {
"engine" = "k3s" "engine" = "k3s"
} }
hcloud_token = var.hcloud_token
depends_on = [ depends_on = [
hcloud_network_subnet.subnet hcloud_network_subnet.subnet
] ]

View File

@ -24,8 +24,6 @@ module "control_planes" {
"engine" = "k3s" "engine" = "k3s"
} }
hcloud_token = var.hcloud_token
depends_on = [ depends_on = [
hcloud_network_subnet.subnet hcloud_network_subnet.subnet
] ]

View File

@ -1,9 +1,3 @@
variable "hcloud_token" {
description = "Hetzner Cloud API Token"
type = string
sensitive = true
}
variable "name" { variable "name" {
description = "Host name" description = "Host name"
type = string type = string