merge connection details

This commit is contained in:
Pim Kunis 2023-04-06 22:06:53 +02:00
parent 76704b13eb
commit 7d709da67b
2 changed files with 2 additions and 5 deletions

View file

@ -1,6 +1,7 @@
terraform { terraform {
backend "pg" { backend "pg" {
schema_name = "bootstrap" schema_name = "bootstrap"
conn_str = "postgres://terraform@10.42.0.1/terraform_state"
} }
required_providers { required_providers {
@ -11,7 +12,7 @@ terraform {
} }
provider "libvirt" { provider "libvirt" {
uri = var.libvirt_endpoint uri = "qemu+ssh://root@atlas.lan/system"
} }
resource "libvirt_pool" "iso" { resource "libvirt_pool" "iso" {

View file

@ -1,4 +0,0 @@
variable "libvirt_endpoint" {
type = string
default = "qemu+ssh://root@atlas.lan/system"
}