-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1372577
commit 17693fe
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# terraform-hcloud-cloud-controller-manager | ||
A simple module to provision a [Cloud Controller Manager for Hetzner Cloud](https://github.com/hetznercloud/hcloud-cloud-controller-manager) on a Kubernetes cluster. See the variables file for the available configuration options. | ||
A simple module to provision a [Cloud Controller Manager for Hetzner Cloud](https://github.com/hetznercloud/hcloud-cloud-controller-manager) (With Network Support) on a Kubernetes cluster. See the variables file for the available configuration options. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Required configuration variables | ||
variable "hcloud_token" {} | ||
variable "network_name" {} | ||
variable "cluster_cidr" {} | ||
variable "hcloud_token" { | ||
description = "Hetzner Cloud API Token" | ||
} | ||
variable "network_name" { | ||
description = "Hetzner Cloud Network name" | ||
} | ||
variable "cluster_cidr" { | ||
default = "10.244.0.0/16" | ||
description = "Pod Network Range" | ||
} |