init commit
This commit is contained in:
parent
cd78d5b172
commit
1a9746a773
7 changed files with 158 additions and 2 deletions
23
providers.tf
Normal file
23
providers.tf
Normal 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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in a new issue