khuedoan-homelab/platform/versions.tf

30 lines
452 B
Terraform
Raw Normal View History

2020-10-28 23:30:16 +07:00
terraform {
2020-11-05 01:06:15 +07:00
required_version = ">= 0.13"
backend "remote" {
hostname = "app.terraform.io"
organization = "khuedoan"
workspaces {
name = "homelab"
}
}
2020-10-28 23:30:16 +07:00
required_providers {
2020-11-04 22:46:38 +07:00
rke = {
2020-11-15 12:31:58 +07:00
source = "rancher/rke"
2020-11-04 22:46:38 +07:00
version = "1.1.3"
2020-10-28 23:30:16 +07:00
}
2020-11-15 12:31:58 +07:00
2020-11-15 23:47:40 +07:00
kubernetes = {
source = "hashicorp/kubernetes"
version = "1.13.3"
}
2020-11-15 12:31:58 +07:00
helm = {
source = "hashicorp/helm"
version = "1.3.2"
}
2020-10-28 23:30:16 +07:00
}
}