Update terraform.tf, variables.tf, .gitignore

This commit is contained in:
2022-09-25 11:59:05 +00:00
parent 5f3a9fa7d5
commit 4cae99f85f
3 changed files with 4 additions and 5 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.terraform
config
.terraform.lock.hcl

View File

@@ -34,7 +34,7 @@ resource "linode_lke_cluster" "foobar" {
}
provider "kubectl" {
config_path = var.config
config_path = "./config"
load_config_file = true
}

View File

@@ -2,10 +2,6 @@ variable "token" {
description = "Your Linode API Personal Access Token. (required)"
}
variable "config" {
description = "kube config from lke"
}
variable "k8s_version" {
description = "The Kubernetes version to use for this cluster. (required)"
default = "1.23"