You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
419 B
28 lines
419 B
terraform {
|
|
required_providers {
|
|
linode = {
|
|
source = "linode/linode"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "linode" {
|
|
}
|
|
|
|
resource "linode_lke_cluster" "lotus_land_story" {
|
|
label = "lotus-land-story"
|
|
k8s_version = "1.22"
|
|
region = "us-west"
|
|
|
|
pool {
|
|
type = "g6-standard-1"
|
|
count = 1
|
|
}
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = linode_lke_cluster.lotus_land_story.kubeconfig
|
|
sensitive = true
|
|
}
|
|
|