Skip to content

Commit

Permalink
Add variable descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwilson committed Jun 21, 2020
1 parent 1372577 commit 17693fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
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.
13 changes: 10 additions & 3 deletions variables.tf
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"
}

0 comments on commit 17693fe

Please sign in to comment.