Update main.tf, terraform.tfvars

This commit is contained in:
2022-09-24 23:08:59 +00:00
parent adbab95f43
commit b8bad9cda7
2 changed files with 7 additions and 6 deletions

View File

@@ -1,10 +1,11 @@
terraform {
required_providers {
linode = {
backend "http" {}
required_providers {
linode = {
source = "linode/linode"
version = "1.27.1"
}
}
}
}
}
//Use the Linode Provider
provider "linode" {

View File

@@ -1,9 +1,9 @@
label = "example-lke-cluster"
k8s_version = "1.23"
region = "us-west"
region = "us-central"
pools = [
{
type : "g6-standard-2"
type : "g6-standard-1"
count : 3
}
]