Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade libvirt provider to v0.8.0 #1723

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend_modules/libvirt/base/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
2 changes: 1 addition & 1 deletion backend_modules/libvirt/host/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ resource "libvirt_domain" "domain" {
qemu_agent = true

// copy host CPU model to guest to get the vmx flag if present
cpu = {
cpu {
mode = local.provider_settings["cpu_model"]
}

Expand Down
2 changes: 1 addition & 1 deletion backend_modules/libvirt/host/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
}
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
2 changes: 1 addition & 1 deletion main.tf.libvirt-testsuite.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf.libvirt-testsuite.example.Manager-43
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf.libvirt.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.tf.libvirt.example.Manager-43
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
libvirt = {
source = "dmacvicar/libvirt"
version = "0.6.3"
version = "0.8.0"
}
}
}
Expand Down
Loading