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.
23 lines
336 B
23 lines
336 B
3 years ago
|
terraform {
|
||
|
required_providers {
|
||
|
linode = {
|
||
|
source = "linode/linode"
|
||
|
version = "1.24.0"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|