forked from fediversity/fediversity
rename await
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
This commit is contained in:
parent
2e99d05cb0
commit
e72071e82d
1 changed files with 2 additions and 2 deletions
|
|
@ -168,7 +168,7 @@ resource "proxmox_virtual_environment_vm" "nix_vm" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "null_resource" "wait_for_ssh" {
|
resource "null_resource" "await_ssh" {
|
||||||
depends_on = [
|
depends_on = [
|
||||||
proxmox_virtual_environment_vm.nix_vm
|
proxmox_virtual_environment_vm.nix_vm
|
||||||
]
|
]
|
||||||
|
|
@ -180,7 +180,7 @@ resource "null_resource" "wait_for_ssh" {
|
||||||
# FIXME expose (and handle thru) [`exec`](https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/qemu/{vmid}/agent/exec) endpoint in proxmox TF provider? wait, what command would i use it for?: https://github.com/bpg/terraform-provider-proxmox/issues/1576
|
# FIXME expose (and handle thru) [`exec`](https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/qemu/{vmid}/agent/exec) endpoint in proxmox TF provider? wait, what command would i use it for?: https://github.com/bpg/terraform-provider-proxmox/issues/1576
|
||||||
module "nixos-rebuild" {
|
module "nixos-rebuild" {
|
||||||
depends_on = [
|
depends_on = [
|
||||||
null_resource.wait_for_ssh
|
null_resource.await_ssh
|
||||||
]
|
]
|
||||||
source = "../tf-single-host"
|
source = "../tf-single-host"
|
||||||
nixos_conf = var.nixos_conf
|
nixos_conf = var.nixos_conf
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue