Initial
This commit is contained in:
24
provider.tf
Normal file
24
provider.tf
Normal file
@@ -0,0 +1,24 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
lxd = {
|
||||
source = "terraform-lxd/lxd"
|
||||
version = "1.10.4"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "lxd" {
|
||||
generate_client_certificates = true
|
||||
accept_remote_certificate = true
|
||||
|
||||
lxd_remote {
|
||||
name = "my-lxd-host"
|
||||
scheme = "https"
|
||||
address = var.lxd_host
|
||||
port = var.lxd_port
|
||||
password = var.lxd_password
|
||||
default = true
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user