aboutsummaryrefslogtreecommitdiff
path: root/terraform/variables.tf
diff options
context:
space:
mode:
Diffstat (limited to 'terraform/variables.tf')
-rw-r--r--terraform/variables.tf20
1 files changed, 20 insertions, 0 deletions
diff --git a/terraform/variables.tf b/terraform/variables.tf
new file mode 100644
index 0000000..93b2743
--- /dev/null
+++ b/terraform/variables.tf
@@ -0,0 +1,20 @@
+variable "region" {
+ default = "par1"
+ description = "Values: par1 ams1"
+}
+
+variable "arch" {
+ default = "x86_64"
+ description = "Values: x86_64 arm64"
+}
+
+variable "debian_version" {
+ default = "Debian Stretch"
+}
+
+variable "k8s_master_server_type" {
+}
+
+variable "node_count" {
+ default = "3"
+}