khuedoan-homelab/infra/lxd/terraform.tf

27 lines
432 B
Terraform
Raw Normal View History

2021-02-12 21:24:13 +07:00
terraform {
backend "etcdv3" {
2021-02-12 21:51:19 +07:00
endpoints = ["localhost:2379"]
2021-02-12 21:24:13 +07:00
lock = true
}
2021-02-12 21:51:19 +07:00
required_providers {
lxd = {
source = "terraform-lxd/lxd"
version = "1.5.0"
}
}
}
provider "lxd" {
generate_client_certificates = true
accept_remote_certificate = true
lxd_remote {
name = "local"
scheme = "https"
address = "192.168.64.4"
password = "1"
default = true
}
2021-02-12 21:24:13 +07:00
}