remove data volume
This commit is contained in:
parent
c25e4ca41d
commit
a57d59ac04
1 changed files with 0 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
terraform {
|
|
||||||
backend "pg" {
|
|
||||||
schema_name = "max-data"
|
|
||||||
conn_str = "postgres://terraform@10.42.0.1/terraform_state"
|
|
||||||
}
|
|
||||||
|
|
||||||
required_providers {
|
|
||||||
libvirt = {
|
|
||||||
source = "dmacvicar/libvirt"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
provider "libvirt" {
|
|
||||||
uri = "qemu+ssh://root@atlas.hyp/system"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "libvirt_volume" "data" {
|
|
||||||
name = "max-data"
|
|
||||||
pool = "data"
|
|
||||||
size = 1024 * 1024 * 1024 * 65
|
|
||||||
|
|
||||||
lifecycle {
|
|
||||||
prevent_destroy = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
output "data_disk_id" {
|
|
||||||
value = libvirt_volume.data.id
|
|
||||||
}
|
|
Reference in a new issue