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 { terraform {
required_providers { backend "http" {}
linode = { required_providers {
linode = {
source = "linode/linode" source = "linode/linode"
version = "1.27.1" version = "1.27.1"
} }
} }
} }
//Use the Linode Provider //Use the Linode Provider
provider "linode" { provider "linode" {

View File

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