merge connection details
This commit is contained in:
parent
76704b13eb
commit
7d709da67b
2 changed files with 2 additions and 5 deletions
|
@ -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" {
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
variable "libvirt_endpoint" {
|
|
||||||
type = string
|
|
||||||
default = "qemu+ssh://root@atlas.lan/system"
|
|
||||||
}
|
|
Reference in a new issue