init commit

This commit is contained in:
Jermeiah S 2025-06-12 21:34:48 -04:00
parent cd78d5b172
commit 1a9746a773
No known key found for this signature in database
7 changed files with 158 additions and 2 deletions

23
providers.tf Normal file
View file

@ -0,0 +1,23 @@
terraform {
required_providers {
incus = {
source = "lxc/incus"
version = "0.3.1"
}
}
}
provider "incus" {
generate_client_certificates = true
accept_remote_certificate = true
remote {
default = true
name = "lappy"
scheme = "https"
address = "olympus.tailfc9f5.ts.net"
token = "token"
}
}