Please, describe the problem here and provide additional information below (if applicable) …
Hello I am having issues using user_inputs in terraform for Virtual Routers, the code is as follows
This properly creates the template and prompts for the input value but the value that is injected into the context is always empty. Any help would appreciated.
Versions of the related components and OS (frontend, hypervisors, VMs):
Terraform Provider: ~> 1.4, also tried ~> 1.3
OpenNebula 6.10.0.1
Steps to reproduce:
Create a base terraform provider file
put this main.tf
resource "opennebula_virtual_router_instance_template" "service_vrouter" {
name = "Service Virtual Router (With Forwarding)"
permissions = "642"
group = "oneadmin"
cpu = "1"
vcpu = "1"
memory = "512"
context = {
network = "YES"
host = "$NAME"
forward = "$FORWARDING_ROUTE"
}
user_inputs = {
# If this router is going to be used as a pass-through router, you can add a static route
FORWARDING_ROUTE = "M|text|Test|"
}
graphics {
keymap = "en-us"
listen = "0.0.0.0"
type = "VNC"
}
os {
arch = "x86_64"
boot = ""
}
}
Apply and then create a Virtual Router in the UI.
Current results:
The creation flow will prompt for the variable but it will be empty once the VM comes up
Expected results:
The creation flow will prompt for the variable and it will be set in the context