15 lines
313 B
HCL
15 lines
313 B
HCL
terraform {
|
|
required_providers {
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
version = ">= 2.10.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "kubernetes" {
|
|
# This points to your k3s config file.
|
|
# When you get your new server, we will update this to point to the new IP.
|
|
config_path = "~/.kube/config"
|
|
}
|