Skip to content

Commit

Permalink
B #410: add LCM_INIT transient state at VM creation
Browse files Browse the repository at this point in the history
  • Loading branch information
treywelsh authored and frousselet committed Feb 20, 2023
1 parent 7c80f68 commit 61d8189
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 1.2.0 (Unreleased)

BUG FIXES:

* resources/opennebula_virtual_machine: add transient state `LCM_INIT` (#410)

NOTES:

* update the provider dependency on the terraform SDK 2 to the release v2.24.1
Expand Down
2 changes: 1 addition & 1 deletion opennebula/helpers_vm_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var (
// Creation
vmCreateTransientStates = VMStates{
States: []vm.State{vm.Pending},
LCMs: []vm.LCMState{vm.Prolog, vm.Boot},
LCMs: []vm.LCMState{vm.LcmInit, vm.Prolog, vm.Boot},
}

// Deletion: terminate the VM
Expand Down

0 comments on commit 61d8189

Please sign in to comment.