0
0
llucycodes42
This code creates an IBM_LB_Vpx resource with the name myResourceName in the dal09 datacenter and with the speed setting at 10 Mbps. The version is set to 10.1, and the plan is set to Standard. Finally, the ip_count is set to 2.
Shortcut: tf_ibm_lb_vpx
resource "ibm_lb_vpx" "${myResourceName}" {
datacenter = "dal09"
speed = 10
version = "10.1"
plan = "Standard"
ip_count = 2
}